Advanced integration with MultiVendorX – Multivendor Marketplace plugin. Show store owner badge for each search results, search for marketplace vendors, search inside vendors stores, use special filters for products and users search results.
Yes. Just use the search results filters feature. Create new filter for products search results and set it with following parameters:
Product -> not equal to -> Any product
Yes. Just create the new search results filter rule. Set it to following parameters:
MultiVendorX: Product sold by -> equal to -> CHOOSE_YOUR_VENDOR
By default the plugin will show a maximum 10 users inside the search results box. To increase this number just use following code snippet ( in this example number is set to 30 ):
add_filter('aws_search_terms_number', 'my_aws_search_terms_number');
function my_aws_search_terms_number( $number ) {
return 30;
}
Yes, it is possible. Please use following code snippet:
add_filter( 'aws_multivendorx_show_badge', 'my_aws_multivendorx_show_badge' );
function my_aws_multivendorx_show_badge( $show ) {
return false;
}
Download free version from wordpress.org repository.
Read about differences between free and pro versions here.