Show Price from XY EUR in Google search results

#78332
  • Resolved Frank
    Rank Math free

    Hi there,

    currently Google shows price ranges for my products in their search results (e.g. 49€ – 545€). From a marketing perspective, this is not really nice. I’ve set Woocommerce to show only the “from XY €” price on the product page etc. Can I do the same for the search results? Otherwise I’d rather hide the price…

    Best, Frank

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Thank you for contacting Rank Math today.

    The prices shown on Google are from the schema added to the product which Rank math automatically adds from data added in WooCommerce.

    For this to change on Google, you should change it on your WooCommerce settings then test your URL here: https://search.google.com/test/rich-results and if the lowprice and high price values are correctly added then Google should update the same as soon as the page is crawled again.

    Looking forward to helping you. Thank you.

    ​​​​​​

    Frank
    Rank Math free

    Hi!

    “change it on your WooCommerce settings”

    I’m a little confused – I managed to remove availability from the structured data with the rank_math/snippet/rich_snippet_product_entity filter. As far as I understand, the filter is related to rank_math … Now I added highPrice to the filter (see below), and Google’s test for rich search results tells me highPrice is missing (optional). I’m curious how this will display in the search results… If you see something I can improve about the code … (I’m quite a beginner :-))
    Thanks anyway for pointing me to highPrice!!
    Frank

    
    add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
    	if ( isset( $entity['offers']['availability'] ) ) {
    		unset( $entity['offers']['availability'] );
    	}
    	if ( isset( $entity['offers']['highPrice'] ) ) {
    		unset( $entity['offers']['highPrice'] );
    	}
    	return $entity;
    });

    Hello,

    Thank you for the follow up.

    The highPrice is a recommended, not required, property for your products so this will show up on rich results test as a warning. Since you now only have the lowPrice, this might show up as the only price in your product rich results. Here is a screenshot:
    img

    Looking forward to helping you. Thank you.

    ​​​​​​

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

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

The ticket ‘Show Price from XY EUR in Google search results’ is closed to new replies.