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