voxlumania
Forum Replies Created
-
The Daily Widget is gone for me as well.
In my opinion, no need to use this plugin anymore. Go here:
https://developers.facebook.com/docs/reference/plugins/comments/
Build a link for your site (use HTML5), then substitute the URL with
<?php the_permalink(); ?>
Put the javascript call after the body tag and you’re all set.
Forum: Plugins
In reply to: [Plugin: WordPress SEO by Yoast] Bug In Permalinks SettingsBump.
Is Joost still supporting this plugin?
I have this problem on the Permalink settings page as well.
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO] Missing meta description for homepageMake sure that:
<?php wp_head(); ?>
is included before the closing </head> tag. Otherwise, you will not see your meta description/keywords tags.
Bill
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: wordpress-seo] Title rewrite not workingOne thing I discovered that is important: you must put
<?php wp_head(); ?>
before the closing </head> tag. That allows the plugin to hook in. Otherwise, you will not see your meta description/keywords tags!
Bill
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Rackspace And Blank PagesNo, if I disable the plugin, everything is ok.
I also deactivated the plugin, just to be sure. No problems there, either.Forum: Hacks
In reply to: nextpage tag (pagination) and duplicate comments!That works great, thanks!
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Rackspace And Blank PagesHi Frederick,
The Apache error log says it’s seg-faulting. I’ll work on the bug submission.
Forum: Plugins
In reply to: [Plugin: Robots Meta] nofollow typo causes tags to be followed and indexedI tried this, and it seemed to work:
From this:
function nofollow_taglinks($output) {
$output = str_replace(‘rel=”tag”‘,’rel=”nofollow tag”‘,$output);
return $output;To this:
function nofollow_taglinks($output) {
$output = str_replace(‘rel=”tag”‘,’rel=”nofollow”‘,$output);
return $output;Remember that str_replace(a,b,c) will replace instances of “a” with “b” in string “c”.
Forum: Plugins
In reply to: Trying to Position TweetMeme ButtonIn the tweetmeme settings, make sure position is set to “manual”. Then, in your template, try entering this code before or after your title:
<?php echo tweetmeme(); ?>Forum: Plugins
In reply to: [Plugin: WP Super Cache] Super Cache causing backend to show blank pagesBump! I also have encountered this problem. I noticed that simply deleting the “cache” directory enabled me to properly login again.