Comments Bryan started the conversationDecember 12, 2023 at 10:52amIs ther anyway to display the venders on the left hand side of the shop page and make them clickable thanks 2,219WebWizards repliedDecember 12, 2023 at 12:09pmHello Bryan,Thank you for purchasing our plugin,I understand that you're looking for some kind of vendors lists / filter on the shop page. There's no default feature for this I'm afraid.If you're interested in doing something with custom code, you could use the following code to display a list of vendors: add_action('wp_footer', function(){ $vendors = get_users(array( 'meta_key' => 'marketking_group', 'meta_value' => 'none', 'meta_compare' => '!=', )); echo marketking()->display_stores_list($vendors); }); Starting with this, you could then for example use CSS to hide specific areas of the list,We would like to add this kind of feature directly to the plugin and it is something we'd consider for future updates, but this is not yet available.Kind regards,Stefan Sign in to reply ...
Is ther anyway to display the venders on the left hand side of the shop page and make them clickable thanks
Hello Bryan,
Thank you for purchasing our plugin,
I understand that you're looking for some kind of vendors lists / filter on the shop page. There's no default feature for this I'm afraid.
If you're interested in doing something with custom code, you could use the following code to display a list of vendors:
Starting with this, you could then for example use CSS to hide specific areas of the list,
We would like to add this kind of feature directly to the plugin and it is something we'd consider for future updates, but this is not yet available.
Kind regards,
Stefan