Remove sidebar in Twenty Seventeen from single products in Woocommerce
问题 I have been trying to figure out how to remove the shop sidebar from my single product pages. I have tried various options for this. I am using the twentyseventeen theme. I first tried this snippet from business bloommer in my child functions file. add_action( 'wp', 'bbloomer_remove_sidebar_product_pages' ); function bbloomer_remove_sidebar_product_pages() { if ( is_product() ) { remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 ); } } But this did not work.Subsequently read