Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter lpccoder

    (@lpccoder)

    Seems
    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…

    Thread Starter lpccoder

    (@lpccoder)

    Please VERIFY it… and maybe release this on the next version.

    Thread Starter lpccoder

    (@lpccoder)

    I 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;';
    	}
    Thread Starter lpccoder

    (@lpccoder)

    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=146645

    And 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
    Music

    So 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.

    Thread Starter lpccoder

    (@lpccoder)

    Ooops, or maybe you will include reviewCount and voteCount to ensure schema.org and to please google requirements. Is a suggestion I forgot.

    Thread Starter lpccoder

    (@lpccoder)

    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

Viewing 6 replies - 1 through 6 (of 6 total)