• Resolved newshop

    (@newshop)


    Hello,
    in woocommerce.php I found this line of code:
    add_action( 'neve_before_shop_loop_content', array( $this, 'add_header_bits' ), 0 );
    I would like to remove this action and tried:
    remove_action( 'neve_before_shop_loop_content', 'add_header_bits' );
    and
    remove_action( 'neve_before_shop_loop_content', 'add_header_bits',0 );
    and

    add_action( 'init', 'woo_remove_nv_header_bits' );
    function woo_remove_nv_header_bits() {
    remove_action( 'neve_before_shop_loop_content', 'add_header_bits' );
    }

    but none of them did the trick. What am I doing wrong?

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Neve header bits’ is closed to new replies.