Search and display
-
• When I clic on a Vendor’s profile, I want to see all the products order by name or by category, not by date of the publication.
How can I display the products on the Vendor’s profile by category? Or by name?• Is there a way to hide on the frontend all products that doesn’t have a Store?
• When I search a product by category, it appears a map with the stores that sell it. Is there a way to show a dropdown and select the store you want?
Here is an example of what I want to do: https://prnt.sc/qcmimb• There is a search bar only to search stores? (Like a shortcode or code) I want to put it on a page, not on a profile.
Have a great day! 😀
-
Also:
I enable single product multivendor and it’s working. But when I Add to my Store, it desapears. I can’t select it again.
How can I enable to Add to my Store the same product again?Hi,
• When I clic on a Vendor’s profile, I want to see all the products order by name or by category, not by date of the publication.
How can I display the products on the Vendor’s profile by category? Or by name?– Well, this shows products as WooCommerce products archive order by setting.
• Is there a way to hide on the frontend all products that doesn’t have a Store?
– Do you want to Admin’s products? If so, please know me site’s Admins ids.
• When I search a product by category, it appears a map with the stores that sell it. Is there a way to show a dropdown and select the store you want?
Here is an example of what I want to do: https://prnt.sc/qcmimb– Do you want to filter products by Store?
• There is a search bar only to search stores? (Like a shortcode or code) I want to put it on a page, not on a profile.
– Sorry, which profile and search bar you are talking about? Please show me screenshot for this!I enable single product multivendor and it’s working. But when I Add to my Store, it desapears. I can’t select it again.
– Well, a vendor may add a product only once to his store. If he wants to create same type of product then he may “duplicate” that product and create a new one!Well, this shows products as WooCommerce products archive order by setting.
-Solved in https://wordpress.org/support/topic/organize-products-from-a-to-z/ . Thank you! Sorry I did the same question twice.
Do you want to Admin’s products? If so, please know me site’s Admins ids.
-I want to see all products except the products that the Admin publish. Id 1
Do you want to filter products by Store?
-Not products, only stores. The thing is that there is a search box, but if the customer doesn’t know the name of the store then is useless. I was thinking something like a dropdown with the names of the stores.
Sorry, which profile and search bar you are talking about? Please show me screenshot for this!
– Don’t worry, I found it on the widgets. Thank you.
Well, a vendor may add a product only once to his store. If he wants to create same type of product then he may “duplicate” that product and create a new one!
– You are so smart. I enable the “duplicate product” option. Thank you! ♥
-
This reply was modified 6 years, 4 months ago by
flor604.
Hi,
I want to see all products except the products that the Admin publish. Id 1
– User this code snippet for the purpose-
add_filter( 'wcfm_sell_items_catalog_args', function( $args ) { global $WCFMmp; $args['author__not_in'] = array( 1, $WCFMmp->vendor_id ); return $args; }, 50 );Thank You
-
This reply was modified 6 years, 4 months ago by
The topic ‘Search and display’ is closed to new replies.