• Hi,

    How can I hide the badges on my orders page, because badges show on products even when the product didn’t have a badge at the moment of buying.

    Thanks.

Viewing 1 replies (of 1 total)
  • Plugin Support Iván Sosa

    (@ivansosa)

    Hi there,

    you can use the following custom code ( in the functions.php of your active theme ) to hide the badges on my account page, but even if the customer buys a product with a badge the badge will be hidden on the order page.

    if ( ! function_exists( 'yith_wcbm_customization_hide_badges_in_archive_page' ) ) {
    	function yith_wcbm_customization_hide_badges_in_archive_page( $allowed ) {
    		if ( is_page('my-account') ) {
    			$allowed = false;
    		}
    
    		return $allowed;
    	}
    
    	add_filter( 'yith_wcbm_is_allowed_badge_showing', 'yith_wcbm_customization_hide_badges_in_archive_page' );
    }

    Have a nice day!

Viewing 1 replies (of 1 total)
  • The topic ‘How to hide badges on my orders page?’ is closed to new replies.