Hello,
We apologize for the issue you are facing with the product price being indexed incorrectly. To address this, you can set your product pages to NoIndex to prevent search engines from indexing them, which includes the price information.
You can follow the instructions in our article on how to NoIndex Paginated Pages to implement this.
Additionally, if you are encountering a specific warning in Google Search Console regarding missing fields or incorrect pricing, you may want to ensure that your WooCommerce product settings are correctly configured. For example, if you are seeing a warning about the priceValidUntil
field, you can refer to our guide on Google Search Console Missing Field Warning for more details on how to resolve it.
If you continue to experience issues or if this does not resolve your problem, please reply to this ticket with your site URL so that a human agent from our support team can assist you further.
Thank you for bringing this concern to our attention!
Sources:
How to NoIndex Paginated Pages » Rank Math
Google Search Console Missing Field Warning » Rank Math
The product page must be indexed. What does not have to be indexed is the price that appears to me as 1 USD and the product is worth more than 1000 USD.
Hello,
Thank you for contacting Rank Math support.
Please share the URL of the affected product page.
In the meantime, you can use the Google Search Console URL inspection tool to request reindexing if you have made changes to that page.
We look forward to helping you.
Thank you.
Hello,
The price is coming from the product schema of this page. If you want to remove the price property from the schema, then you can try to add the following filter on your website:
add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
if ( isset( $entity['offers'] ) ) {
unset( $entity['offers'] );
}
return $entity;
} );
Here’s how you can add filter/hook to your WordPress site: https://rankmath.com/kb/wordpress-hooks-actions-filters/
However, please note that Price is a required field in the Product Schema. So, instead of removing this, we suggest you change the price in the WooCommerce settings.
Hope that helps and please don’t hesitate to let us know if you have any other questions.
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.