lpccoder
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Translation not working properlySeems
public function get_title( $action = '' )
at class-theme-my-login-template.php not working properly, and I think is not loading the translations properly but I don’t know how to fix it…Forum: Plugins
In reply to: [WP-PostRatings] /rating_over. 404 error on webmaster toolsPlease VERIFY it… and maybe release this on the next version.
Forum: Plugins
In reply to: [WP-PostRatings] /rating_over. 404 error on webmaster toolsI think I found a solution, we need to change the following code:
if($postratings_custom) { for($i = 1; $i <= $postratings_max; $i++) { $postratings_javascript .= 'var ratings_'.$i.'_mouseover_image=new Image();ratings_'.$i.'_mouseover_image.src=ratingsL10n.plugin_url+"/images/"+ratingsL10n.image+"/rating_'.$i.'_over."+ratingsL10n.image_ext;'; } } else { $postratings_javascript = 'var ratings_mouseover_image=new Image();ratings_mouseover_image.src=ratingsL10n.plugin_url+"/images/"+ratingsL10n.image+"/rating_over."+ratingsL10n.image_ext;';
}
by this one:
if($postratings_custom) { for($i = 1; $i <= $postratings_max; $i++) { $postratings_javascript .= 'var ratings_'.$i.'_mouseover_image=new Image();ratings_'.$i.'_mouseover_image.src="'.plugins_url().'/wp-postratings/images/"+ratingsL10n.image+"/rating_'.$i.'_over."+ratingsL10n.image_ext;'; } } else { $postratings_javascript = 'var ratings_mouseover_image=new Image();ratings_mouseover_image.src="'.plugins_url().'/wp-postratings/images/"+ratingsL10n.image+"/rating_over."+ratingsL10n.image_ext;'; }
Forum: Plugins
In reply to: [WP-PostRatings] Rating not showed on google search.I’m not an expert on this question but I found that url that maybe gives some clues:
https://support.google.com/webmasters/bin/answer.py?hl=en&answer=146645And says that:
Properties
Google recognizes the following aggregate review properties, derived from the hReview-aggregate microformat. In general, you can use the same property name for microdata, microformats, and RDFa; where the microdata/RDFa and microformats property names differ, the microformats name appears in parentheses. Properties in bold are required. Each item must include at least one of either count or votes.
But after reading a while:
Google supports rich snippets for these content types:
Reviews
People
Products
Businesses and organizations
Recipes
Events
MusicSo What are posts? Recipes? or Reviews?
As I said before, I’m not an expert and maybe we are trying to do something that we can’t.Forum: Plugins
In reply to: [WP-PostRatings] Rating not showed on google search.Ooops, or maybe you will include reviewCount and voteCount to ensure schema.org and to please google requirements. Is a suggestion I forgot.
Forum: Plugins
In reply to: [WP-PostRatings] Rating not showed on google search.Well, you can make a test: change count to votes and verify if all the post ratings are showed up at google search. Won’t you?
So we can solve and close this question or maybe Google is wrong and will accept, nobody knows when, our ratings implementation