xiff
Forum Replies Created
-
@supahduck, been seeing it on several of mine as well. And we aren’t the only ones, I’ve seen mention by others while googling on the topic. If I find anything out, I’ll be sure to let you know.
I’m also seeing this on some of my websites and am also curious about any updates on this.
Forum: Plugins
In reply to: [WoWpi] Shortcodes not workingFirst of all, awesome plugin, thank you for developing it.
I am also having a similar issue. [wowpi_guild_members] works fine for displaying the unsorted list or members for my guild. However, none of the parameters for sorting or editing works. I have checked to make sure I’m using straight quotes and not curly ones, I’m just not sure what the issue is. Any advice you can give me would be immensely appreciated!Ok, I got the error warning to go away by changing it to this:
if (is_array($post_settings_field_hide_title) ) { $post_settings_field_hide_title == $value["post_settings_field_hide_title"][0]; }
But is this the right way to do it?
Thank you! I got it to work, but I had to change it to
if( get_post_meta( $post->ID, 'post_settings_field_hide_title', true) != 'yes' ) { the_title(); }
I now have a different issue. In the editor for every post and page I’m getting an error in the meta box saying:
“Warning: Illegal string offset ‘post_settings_field_hide_title’ in /var/www/html/wordpress/wp-content/themes/my_theme/functions.php on line 141”
The line in question is:
$post_settings_field_hide_title = $value["post_settings_field_hide_title"][0];
Everything still works fine except for that annoying warning. And it’s odd that it shows up on every post and page except for one. Any ideas?
Actually I just figured it out, it was my boneheaded mistake! Sorry for updating the thread with a useless question.
Problem was, I’m using X-Theme with Cornerstone, and I inserted the html code in a text field instead of a raw content field.
But it’s all working fine now.
Thank you for your code and poking your nose in to help, Robswaimea!
And thanks to caimin_nwl for directing me to this thread!This code has helped a lot, the individual events are styled the way I need. The only problem is each one is displayed in block format, stacked on top of each other. How can I get them inline, one right next to the other on the same line?
I’ve tried messing with the CSS but nothing I try works.