Archived topic
Under Related/Upsells Columns -> Display short description does not work
3 replies · Started by Alexandra on February 3, 2023
Hi,
In the customiser, the function under 'Related/Upsells Columns' to 'Display short description' does not work. I toggle the checkbox and nothing happens. Same with 'Display product metadata'.
See example: https://www.businessanalyststoolkit.com/product/stakeholder-analysis-template/
Can you help please?
Thanks,
Sam
Hi there,
try adding this PHP snippet to your site:
add_action('wp', function(){
if ( is_product() ) {
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 5 );
}
});
This doc explains how to add PHP:
https://docs.generatepress.com/article/adding-php/
Thank you, it worked :)
Glad to hear that