Good morning everybody.
I am trying to remove the Short Description in the Shop Page. Doing this in the Product Page was simple enough remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20);
But I have found no way to do the same in the previous Shop Page. There, I just want images, not text (or at least not the Short Description, a very long tables in this case).
Could you please help me?
Thanks anyway!
Good morning everybody.
I am trying to remove the Short Description in the Shop Page. Doing this in the Product Page was simple enough remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20);
But I have found no way to do the same in the previous Shop Page. There, I just want images, not text (or at least not the Short Description, a very long tables in this case).
Could you please help me?
Thanks anyway!
Try using one of the available shop loop item actions and remove call to WooCommerce template function woocommerce_template_single_excerpt
using remove_action()
.
woocommerce_before_shop_loop_item
(before thumbnail)woocommerce_before_shop_loop_item_title
(before title)woocommerce_shop_loop_item_title
(before price)woocommerce_after_shop_loop_item_title
(before "Add to cart" button)woocommerce_after_shop_loop_item
(after "Add to cart" button)These actions are called in woocommerce/templates/content-product.php
.
E. g. remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_single_excerpt' );
. Make sure to match $priority
with the $priority
it was originally added.