Hide data if found

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.