// Remove price from WooCommerce structured data for guests
function drcnz_remove_price_from_structured_data( $data, $product ) {
if ( ! is_user_logged_in() ) {
if ( isset( $data['offers'] ) ) {
unset( $data['offers']['price'] );
unset( $data['offers']['priceCurrency'] );
}
}
return $data;
}
add_filter( 'woocommerce_structured_data_product', 'drcnz_remove_price_from_structured_data', 9999, 2 );
Warning: Cannot modify header information - headers already sent by (output started at /home1/sweetfr4/public_html/drcnz/wp-content/themes/bridge-child/functions.php:191) in /home1/sweetfr4/public_html/drcnz/wp-includes/pluggable.php on line 1450
Warning: Cannot modify header information - headers already sent by (output started at /home1/sweetfr4/public_html/drcnz/wp-content/themes/bridge-child/functions.php:191) in /home1/sweetfr4/public_html/drcnz/wp-includes/pluggable.php on line 1453