Reply 319648 to: need to use woocommerce_before_shop_loop_item_title hook

Avatar: Olga Barlow
Olga Barlow
Support staff
March 15, 2022 at 18:59

Hello,

You may add next custom code in your child-theme/functions.php

add_filter('the_title', function($title, $id) {
if ( in_array(get_post_type($id), array('product', 'product_variation') ) ) {
$title .= ' ' . __('Your custom text', 'xstore');
}
return $title;
}, 10, 2);

https://gyazo.com/45e8dadd9c96a6bc16f51ec50ce86181

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.