• Resolved adio93

    (@adio93)


    Hi, Woodmart theme has its own product filters, I can’t display them on the vendor page.

    • This topic was modified 3 months, 3 weeks ago by adio93.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WebWizards

    (@webwizardsdev)

    Hi there,

    To use filters on the vendor’s individual store page, It would be necessary to use a filters option that works with the WooCommerce [products] shortcode. Our plugin uses this shortcode for the display.

    It is currently possible to enable that using the WOOF filters: https://woocommerce-multivendor.com/docs/how-to-enable-search-and-filter-by-text-category-tags-etc-on-vendor-stores/

    I am not sure if Woodmart filters can be made to work the same way.

    Thread Starter adio93

    (@adio93)

    Thanks. Is there a way to hide the “products” tab and move the “vendor information” tab?

    Plugin Author WebWizards

    (@webwizardsdev)

    To hide the ‘products’ menu tab, you can add this CSS to your site:

    button.marketking_tablinks[value="marketking_vendor_tab_products"] {
    display: none;
    }

    Additionally, to set a different tab as default, you can add this PHP code snippet (to functions.php or any snippets plugin):

    add_filter('marketking_vendor_default_tab', function($default){
    return 'info';
    }, 10, 1);

    This will ensure the “Vendor details” tab is the first one in the menu, and selected by default when a customer visits the vendor’s store page.

    Thread Starter adio93

    (@adio93)

    Hi, it worked! Thanks! =)

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.