Don’t see the badges on Woo products lists & Woo products carousels

Viewing 6 posts - 13 through 18 (of 18 total)
#28370
This reply has been marked as private.
Sophie 2e
Participant
#28371
This reply has been marked as private.
Sophie 2e
Participant
#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
#28456
This reply has been marked as private.
Sophie 2e
Participant
#28489
This reply has been marked as private.
Sophie 2e
Participant
#28491

Hello Sophie,
Shortcodes are used to create those badges, so they cannot be controlled from the admin panel. We are working on this issue. Hopefully, soon you will receive an updated version so that you can control it from the admin panel soon. Now you need to fix it with CSS.

Your second problem is caused by some error while copying the code. Get the code from here – https://pastebin.com/FJH8Aa2D

Also, you can copy the code from the function.php file on your live site.
Take a look at the Screenshot

https://prnt.sc/Aff-k4tKJWCf
https://prnt.sc/qyDU6cwxZ9fe

In case of any other issues, please open a new ticket. As the 1st problem you reported has been resolved, we are closing this ticket.
Thank you
Ruble Ahmed

Rubel Ahmed
Keymaster
Viewing 6 posts - 13 through 18 (of 18 total)
  • The topic ‘Don’t see the badges on Woo products lists & Woo products carousels’ is closed to new replies.