Banner Logo

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

Sw Core still Conflicting With WC Marketplace

Theme and Plugin Support

Resolved
Viewing 30 reply threads
  • Author
    Posts
    • #131286
      zedmanshere
      Participant

      Hi There,

      I’m looking to re-open this post as still having the issue: https://multivendorx.com/support-forum/topic/sw-core-conflict-with-wc-marketplace/

      I look forward to your reply

      Thank you

    • #131287
      zedmanshere
      Participant
      This reply has been marked as private.
    • #131359
      This reply has been marked as private.
    • #131372
      zedmanshere
      Participant
      This reply has been marked as private.
    • #131428
      This reply has been marked as private.
    • #131436
      zedmanshere
      Participant
      This reply has been marked as private.
    • #131483

      Thank you for sharing the access. Our team will get back to you.

    • #131501
      This reply has been marked as private.
    • #131502

      Hi,
      We have fixed this issue kindly checkout the video – https://app.vmaker.com/record/MhE12oiRjuAFHPmq

      using below code –
      kindly add this code to your active-theme/function.php

      function dequeue_wcmp_conflict() { 
          if( class_exists('WCMp') && is_vendor_dashboard() && is_user_wcmp_vendor(get_current_user_id()) ) {
             wp_dequeue_style( 'sw_css_custom' );
             wp_dequeue_style( 'sw-wooswatches' );
          }
      }
      add_action( 'wp_enqueue_scripts', 'dequeue_wcmp_conflict', PHP_INT_MAX );
      Copy

      Regards,

    • #131944
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132000

      @zedmanshere, add this code in the function.php of the current theme :

      add_action('wp_head', 'custom_css', 999999);
      function custom_css() { 
          if ( is_vendor_dashboard() && is_user_wcmp_vendor(get_current_user_id()) ) { ?>
          <style type="text/css">
          	.resmenu-container {
              display: none !important;
          }
      		li.dropdown.login-user {
      			background: #181617 !important;
      	}
          </style>
          <?php
          }
      }
      Copy
    • #132001

      For the vendor shop page, from WCMp 3.7 we have made vendor shop page compatible with elementor, hence we have added tabular mode.

      However if you want to use the older look of vendor list page, you can use our filter. But please note, if you use this filter, then you can’t use the elementor to edit the page.
      To get this, add this below code in your currently active theme functions.php file

      add_filter('wcmp_load_default_vendor_store', '__return_true');
      Copy
    • #132450
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132467
      This reply has been marked as private.
    • #132469
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132488

      Hi,
      Since this is a theme related issue, hence we need to debug this issue.
      So, create a staging site and share the FTP and admin access so we can check.

    • #132500
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132520

      Hi,
      Thank you for sharing the access.
      Our team will get back to you.

    • #132584
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132590

      Hi,
      We are using bootstarp. Your theme is also used bootstrap, but older version. We are using latest bootstrap. Thats why conflict occurs. We have fixed this issue by adding this below code in your current active theme funtions.php file

      add_action('wp_enqueue_scripts', function() {
      	if (is_vendor_dashboard()) {
      		wp_dequeue_script( 'bootstrap' );
      	}
      }, 111);
      Copy

      Thanks

    • #132623
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132692
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132697
      Anonymous
      Inactive

      Hi,
      we just modified your code for the vendors’ location on the short description.
      The Code :
      ‘ add_filter( ‘woocommerce_short_description’, ‘add_delivery_city_in_short_description’, 10, 1 );
      function add_delivery_city_in_short_description ( $post_excerpt ) {

      $vendor = get_current_vendor();
      echo “Delivering From : ” ,get_user_meta($vendor->id, ‘_vendor_city’, true);

      return $post_excerpt;
      } ‘

      We are working on the other part of your query. We are planning to modify it in our next update in one or two weeks. However, if you want we can share the modified plugin after the work is done!

      Thank You.

    • #132707
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132762
      This reply has been marked as private.
    • #132767
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132768

      Thank you for sharing the access.
      Our team will get back to you.

    • #132805
      Anonymous
      Inactive

      Hi, we looked into your site and tested it. The code is currently working and it is showing the city in the short description field.

    • #132817
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132821
      zedmanshere
      Participant
      This reply has been marked as private.
    • #132826
      Anonymous
      Inactive

      Hi,
      We looked into your site and saw the issue that if we add a new product the delivery city is not showing. If you want to show that you must put a short description of the product. Actually, short description is made by woocommerce and there is the hook that we are using to modify the code as you want. So if you don’t add short description it will also not show the Delivering City.

      Thank you.

Viewing 30 reply threads

The topic ‘Sw Core still Conflicting With WC Marketplace’ is closed to new replies.