Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

vendor page sidebar issue

WCMp Vendor Live Chat

Resolved
Viewing 7 reply threads
  • Author
    Posts
    • #113442
      jjferguson
      Participant

      Hello
      I have searched and tried every single post regarding removing the sidebar on the vendor page.

      I have added the code: .tax-dc_vendor_shop .col.large-3{
      display: none;
      }
      .tax-dc_vendor_shop .col.large-9{
      width: 100%;
      max-width: 100%;
      flex-basis: 100%;
      }

      to every single css file.

      My theme has sidebar removed from shop pages and it still will not go. Please could somebody help me?

      The site is sitting behind a holding page.

    • #113479
      jjferguson
      Participant
      This reply has been marked as private.
    • #113491
      jjferguson
      Participant

      Can anybody reply please?

    • #113497

      Hi,
      you can try this below code to remove the sidebar from vendor shop page
      Please add this code in the function.php of the current active theme

      add_action('wp_head', 'hide_sidebar' ); 
      function hide_sidebar(){ 
        if( is_tax( 'dc_vendor_shop' )){ 
        ?>
        <style type="text/css">
          #secondary {
              display: none;
          }
          #primary {
             width:100%;
          }
         </style>
        <?php
       }
      }
      Copy

      regards,

    • #113506
      jjferguson
      Participant

      Thank you for your response.

      I added the code in various locations and the sidebar still remains.

      Is there a specific place within the functions.php?

    • #113507
      jjferguson
      Participant

      this is the theme editor menu

    • #113530
      jjferguson
      Participant

      No need to reply, have chosen a different plugin as I can’t wait two days to fix an issue on a live site. Good luck.

    • #113584
      WCMp Admin
      Keymaster

      Hi

      Sorry to know. But, as per the above thread, team has already replied the very same day. You initiated the thread on 12th Jan and same day took the decision to shift. As per the above calculation, it was never two days delay response rather today is the 2nd day. Wish you could have provided us a chance to establish a detailed communication with you.

      As per our support policy, we try to answer each question as quickly as possible, but response time can sometimes take up to 24 hours during business days and 48 hours during weekends/holidays.

      Wish you all the very best.

Viewing 7 reply threads

The topic ‘vendor page sidebar issue’ is closed to new replies.