Claim your freedom to choose the perfect partner for your multi-vendor journey.

FREEDOM25

Celebrate the festive season by giving your marketplace a powerful lift!

FESTIVE20

5.0.0
Something big is coming for marketplace admins… MultiVendorX 5.0 is almost here. Are you ready?
Be the first to explore all the game-changing features!
Power your marketplace dreams with unbeatable Black Friday deals!

MVXBLACK30

Supercharge your marketplace vision with unstoppable Cyber Monday deals!

MVXCYBER30

Holiday cheer, bigger savings
Take 25% off-because your marketplace deserves a gift too.

happyholiday

Issues with “mvx_product_list_form”

Resolved
Viewing 5 reply threads
  • Author
    Posts
    • #249641
      donald_punk
      Participant

      Hi, I don’t know, if it’s just me and if it is an issue with Woodmart? I tried the snippet on that site (https://multivendorx.com/docs/code-snippet/theme-conflict-issue/), but it didn’t work…

      Like you can see in the attachments, the form for “bulk actions” & co. is at 100% width and everything is ordered below instead of next to it. This affects serveral sites.

      I made plugin updates today, but I can’t figure out from where this issue is coming…

    • #249646

      Hello there,

      We’re sorry to hear that you’ve encountered this issue. To help us investigate further, could you please create a staging site (a replica of your live site) and share the staging site URL along with temporary admin and FTP access? This will allow us to check the issue directly and provide you with a proper solution.

      Also while sharing the access don’t forget to mark your reply as private.

    • #249663
      donald_punk
      Participant

      Hi Sangita, I figured it out! Woodmart loads also a base.min.css on the dashboard and that should be a part of the dequeue: wp_dequeue_style( ‘wd-style-base’ );

      I fixed it now like this, because the whole dequeue made some other troubles:

      
      /*** Enqueue Scripts for Dashboard ***/
      add_action( 'wp_enqueue_scripts', 'theme_issue_fix', 99999999999999 );
      function theme_issue_fix() {
         if( is_vendor_dashboard() && is_user_logged_in() && !current_user_can('administrator') ) {
           wp_dequeue_style( 'wd-style-base' );     
         }
      }
      add_action('wp_enqueue_scripts', 'my_remove_scripts', 9999999999999999999999 );
      
      function my_remove_scripts(){
          if( mvx_is_store_page() ){
              //style
          }
      }
      function load_jquery_migrate() {
          wp_enqueue_script('jquery-migrate');
      }
      add_action('wp_enqueue_scripts', 'load_jquery_migrate');
      /*** Enqueue Scripts for Dashboard ***/
      
      
    • #249664

      Hello there, That’s great to hear! Thank you for sharing the details and your fix regarding the base.min.css. It’s really helpful to know that dequeuing wd-style-base resolved the issue without causing additional conflicts.

      We truly appreciate you taking the time to share this with us. Please don’t hesitate to reach out if you come across anything else. We are always there for your assistance.

    • #249676
      donald_punk
      Participant

      Yes, important is also this part in the code:

      if( is_vendor_dashboard() && is_user_logged_in() && !current_user_can(‘administrator’) )

      Because otherwise, my dashboard wouldn’t have a style, if I was logged in as an admin. At the moment, I didn’t experience any errors and I was working the last hours in different browsers and different login-states.

    • #249679

      Thank you for pointing this out and sharing the additional code snippet. That’s a very helpful detail, as it ensures the dashboard styling remains intact when logged in as an admin.

      It’s great to know that everything is working smoothly on your end across different browsers and login states without any errors. We truly appreciate the time and effort you’ve taken to test this thoroughly and share your findings with us.

      Please feel free to reach out anytime if you encounter anything else — we’re always here to help.

Viewing 5 reply threads
  • The topic ‘Issues with “mvx_product_list_form”’ is closed to new replies.
Shopping Cart
Scroll to Top