Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1140112
    maghrabi42
    Participant

    Hello,
    I need to remove the header on the shop page you can find it in the attachment
    thank you

    #1140267
    Thai
    Moderator

    Hi There,

    To remove that section, please add the following CSS under Customizer > Custom > Global CSS:

    .single-x-portfolio .entry-top-navigation {
        display: none;
    }

    Hope it helps 🙂

    #1140563
    maghrabi42
    Participant

    is not working
    thank you

    #1140712
    Rue Nel
    Moderator

    Hello There,

    Thanks for the updates! It turns out that you have inserted an invalid code. Please remove this code from your customizer:

    add_filter( 'woocommerce_checkout_fields' , 'remove_billing_fields' );
     
    function remove_billing_fields( $fields ) {
    
        unset($fields['billing']['billing_company']);
    
        return $fields;
    }

    This code should be place in your child theme’s functions.php file. And then you can update the css code and use this instead:

    .single-post .entry-top-navigation,
    .single-x-portfolio .entry-top-navigation,
    .single-product .entry-top-navigation {
        display: none;
    }

    Hope this helps.

    #1140818
    Rad
    Moderator

    Hi there,

    Please change it into this,

    .single-product .entry-top-navigation {
    display: none !important;
    }

    Hope this helps.

    #1141021
    maghrabi42
    Participant

    Hello,
    it’s working thank you alot for your greet support wou are very helpful
    thank you

    #1141025
    Rue Nel
    Moderator

    Hello There,

    You’re welcome! We’re happy to help you out.
    If you need anything else we can help you with, don’t hesitate to open another thread.

    Best Regards.

  • <script> jQuery(function($){ $("#no-reply-1140112 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>