Home Forums Woocommerce Product Badge Manager Don’t see the badges on Woo products lists & Woo products carousels Reply To: Don’t see the badges on Woo products lists & Woo products carousels

#28436

Hello Sophie,

After updating the theme, the badge will disappear automatically. It is necessary to use a child theme to solve the problem. Using a child theme will prevent the badge from disappearing. For now, we have just fix it. Here is the code you can use into theme function file to fix it latter or you can create a child theme without hassle again update the code.

function panda_woo_badge() {
echo do_shortcode(‘[woo_pro_badges_catalogue_extended]’);
}

add_action(‘exad_before_each_product_item’, ‘panda_woo_badge’);

function panda_woo_badge_tooltip() {
echo do_shortcode(‘[woo_pro_badges_catalogue_extended]’);
}

add_action(‘theplus_product_badge’, ‘panda_woo_badge_tooltip’);

Thanks
Rubel

Rubel Ahmed
Keymaster
Success Message Icon

Thank You

It's great to hear from you. Thanks for taking
part. Your feedback is greatly appreciated.