Home Forums WoodMart support forum Hide price from not loged users Reply To: Hide price from not loged users

#349485

Luke Nielsen
Keymaster

Hello,

In order to hide product price from Google search, try to add the below code to the functions.php file in your child theme.

if  ( function_exists('wd_remove_some_structured_data') ) {
    function wd_remove_some_structured_data( $markup ) {
        unset( $markup['offers'] );
        return $markup;
    }
    
    add_filter( 'woocommerce_structured_data_product', 'wd_remove_some_structured_data' );
}

Please feel welcome to reach out to me with any questions you may have and I would be more than happy to help.

Kind Regards