Hi Jordan,
Please close as the issue is resolved.
Thanks!
Thank you, Ismael,
I tried your suggestion and it broke the layout on our product pages. However, you did point me in the right direction!
I found this on WordPress.org and used the suggested solution for removing the JSON/LD data from the front end of the site.
https://wordpress.org/support/topic/how-to-remove-the-default-woocommerce-json-ld-structured-data/
add_action( ‘init’, ‘my_remove_json_ld_frontend’ );
function my_remove_json_ld_frontend() {
remove_action( ‘wp_footer’, array( WC()->structured_data, ‘output_structured_data’ ), 10 );
}
I appreciate your help!
Thank you