JennAtFFP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing "Leave a Reply" Twenty ElevenYou can add some code to the comment.php
I didn’t like the “Leave a Reply” text either and wanted to personalize the message to match my personality.
If you’re using a child theme, you’ll need to copy the comment.php file over so your child theme can use it otherwise, if you change the parent, the changes may reset to the default during an update.
Change the line of code in the original comment php from
<?php comment_form(); ?>
to something like this only change the text inside the single quote mark Comments Make Me Happy to whatever you like.
<?php comment_form(array(‘title_reply’=>’Comments Make Me Happy’)); ?>
BTW-I found the line of code towards the bottom of the Twenty Eleven theme file.
Good luck!
I’m having the same problem on my blog. I noticed it with All In One SEO and thought it was the plugin so I switched to WordPress SEO from Yoast and it’s still happening.
Wonder if it’s the latest WP update causing the blunders!
Anyway, I’m running the Arras theme and haven’t found any answers on their forum so I’m not sure what to do. I’m tempted to switch themes to see if a newer theme will fix it but I don’t have the time to customize a new theme right now.
Please let us know if anyone finds a working answer. I like the features the WordPress SEO offers but they aren’t very useful right now! 🙁
Forum: Plugins
In reply to: [Plugin: SexyBookmarks] function get_sexy over-rides global $post variableI updated my plugin, resaved my settings and it works perfectly. Thanks for the update!
Forum: Plugins
In reply to: [Plugin: SexyBookmarks] function get_sexy over-rides global $post variableSexy Bookmarks caused a problem for me in the Arras theme. The same post was populating on all my looped content areas: featured sliders, editor’s picks, etc.
After some investigation, I found the code mentioned above was the likely culprit and armed with some information from a few other strings discovered if I made the following adjustments it fixed my problem.
Search the “sexybookmarks/includes/public.php” file for
$post = $wp_query->post;
I had two instances of this code show up in my plugin. Change BOTH to:
$spost = $wp_query->post;
then update your file and it should fix this problem…At least it worked for me!
Here’s the other strings I found helpful.
http://www.arrastheme.com/forums/topic3671-duplicate-posts-in-home-sidebar.html
http://wordpress.org/support/topic/sociable-post-wp_query-gtpost-flawI’m having the same problem as the original poster too. Does anyone at WP moderate these threads cause I haven’t seen a resolution to this problem ANYWHERE!