Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-product-descriptions-on-shop-page.txt

9 lines
446 B
Text

remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
add_action('woocommerce_after_main_content', 'add_shop_page_description');
function add_shop_page_description(){
if (is_product()){
$shop_id = wc_get_page_id('shop'); // replace woocommerce_get_page_id() with wc_get_page_id()
$content = get_the_content(null, false, $shop_id);
echo apply_filters( 'the_content', $content );
}
}