Disable product description from showing on products on the shop page in WooCommerce

Disable product description from showing on products on the shop page in WooCommerce.

Snippet Type

Execute on Child Sites

Snippet

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 );
  }
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.