Hi
I have a product list , consists of products and I have two options to either favourite a product or store pick up a product.
Now,i click the store pickup button,now the product is in store pick up table.
Now i need to hide the product from the list showing.how can I do this?
Or any alternative option, welcome.
I presume youâre using an âadd rowâ option to put the product in your âpickupâ table?
If the items are unique, and will no longer be stocked, you can use a âdelete rowâ on âthis itemâ right in the same custom action, and it will be removed from your product table.
However, if you still need this item in your product table, and just donât want it to show in the list until itâs restocked, then set a boolean flag âbeing picked upâ in your product table, and use a FILTER on your list to not show any products where âbeing picked upâ is true.
I definitely need those product since I donât know whether the customer will buy or not.
If it is not bought,i need that product.how to retrieve the product after to the product table.
If you need the product still then use the method that I outlined above to just set a flag and hide it temporarily.
Then you will need some sort of administrator access which shows you all the products and you can select which ones were not picked up and reset that flag.
1 Like
Got it man.but can i give access to the business owner itself to uncheck?
Any way of implementing this easily in the backend for business owner.
Well, if a person has a button to âpick upâ an item, they should have a place they can go to âunselect this item for pickupâ. Just give your Admin access to the same âunselectâ page.