Hello @awr10e,
This is the order we follow to generate meta descriptions for WooCommerce products:
- Content from SEO Description field
If that is missing, then:
- WooCommerce Excerpt or Product Short Description
If that is missing, then:
- Template From General Settings in WordPress Dashboard > Rank Math > Titles & Meta > Products
If that is missing, then:
- Auto generated Content from the product page (long description)
Since you are adding the description in the Titles & Meta, your short description will override that. Please add the filter given below to add the description from the global settings. Please note that the filter will add the correct description in the front end but you will still see the short description in the snippet editor of the meta box.
add_action( 'rank_math/frontend/description', function( $generated ) { if ( ! is_product() ) { return $generated; } global $post; $desc = RankMath\Helper::get_settings( "titles.pt_product_description" ); $desc = RankMath\Helper::replace_vars( $desc, $post ); return empty( $desc ) ? $generated : $desc; });
Here is how to add a filter to your site:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
Hope that helps. Let us know if you need any other assistance.