Okay
  Public Ticket #3541616
venders displayed left hand side of shop page
Closed

Comments

  • Bryan started the conversation

    Is ther anyway to display the venders on the left hand side of the shop page and make them clickable thanks

  •  2,219
    WebWizards replied

    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:

    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