Banner Logo

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

I need to hide the social networks

WCMp Mangopay Marketplace

Resolved
Viewing 7 reply threads
  • Author
    Posts
    • #129334
      Alberto Julián
      Participant

      I need to hide the social networks of the seller page, even if the seller has them on their page, it´s possible?

    • #129361

      Hello thank you for connecting with us ,
      Please add this code inside your theme’s functions.php:

      add_filter('wcmp_vendor_store_header_show_social_links', '__return_false'); 
      
      Copy
    • #129544
      Alberto Julián
      Participant

      I paste this code, but I see all the same… https://prnt.sc/1xabre2

    • #129572

      Hi , please do create a staging site, which is an exact replica of the live site. Also please do share the admin and FTP access so we can look into this.
      While sharing the access don’t forget to mark the response as private.

    • #129575
      Alberto Julián
      Participant
      This reply has been marked as private.
    • #129580
      This reply has been marked as private.
    • #129592
      Alberto Julián
      Participant
      This reply has been marked as private.
    • #129708

      HI,
      We have fixed this issue using below code. Checkout the image – https://prnt.sc/1xhn4sg

      Please add this code in the function.php of the current active theme :

      add_action('wp_head', 'add_custom_css_for_vendor_shoppage');
      function add_custom_css_for_vendor_shoppage(){
          ?>
          <style>
          div.wcmp_social_profile {
          display: none!important;
          }
          </style>
          <?php
      }
      Copy

      Regards,

Viewing 7 reply threads

The topic ‘I need to hide the social networks’ is closed to new replies.