Banner Logo

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

Remove Vendor Setup Progress Bar

WCMp Advanced Frontend Manager

Resolved
Viewing 3 reply threads
  • Author
    Posts
    • #115310
      Andrew Austin
      Participant

      Hello,

      Is there a hook/filter to remove this progress bar?

      It appears at the top of many of the Advanced Frontend Manager pages, but we handle shipping for the vendors so we want to disable this. We still need vendor shipping enabled in settings so they can add the product weight and dimension attributes.

      Thank you!

    • #115340

      In order to remove the vendor profile progress bar, add the following code to the function.php of the current active theme :

      add_filter( 'wcmp_vendor_dashboard_show_progress_bar', 'filter_wcmp_vendor_dashboard_show_progress_bar', 10, 1 );
      function filter_wcmp_vendor_dashboard_show_progress_bar( $result ) {
      	return $result = false; 
      }
      Copy

      Regards,

    • #115369
      Andrew Austin
      Participant

      Thank you, that worked perfectly!

    • #115401

      Thank you for the update. We are closing this thread for now. If you need any further help, just open another thread.

      Also, I hope you are satisfied with our assistance and plugin. A 5/5 review here- https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/#new-post , would be a great way to share your experience with others.

      This motivates us to continue providing the best experience possible and also helps others know how WC-Marketplace can make their life easier.

Viewing 3 reply threads

The topic ‘Remove Vendor Setup Progress Bar’ is closed to new replies.