What's your biggest current challenge? Have your say in Community Polls along the right column.

Hi, I want to add and edit my new products on online store but i don't want it shown on live

Solved

Hi, I want to add and edit my new products on online store but i don't want it shown on live

VBNTG
Visitor
2 0 0

Hi, I want to add and edit my new products on online store but I don't want it shown on live or I don't want people to see it on my store. how do i do that??

Accepted Solution (1)
BSSCommerce-B2B
Shopify Partner
1969 564 566

This is an accepted solution.

@VBNTG, shopify doesn't provide the feature like that.
If you're comfortable with coding, you can assign a product tag to the items you want to hide and a different tag to the customers you want to show them to. When you log in with that customer account, you'll be able to see the product, while it remains hidden from others.

 

{% assign show_product = true %}
{% if product.tags contains "hide" %}
  {% unless customer and customer.tags contains "show" %}
    <!-- This product will be hidden -->
    {% assign show_product = false %}
  {% endunless %}
{% endif %}

{% if show_product %}
  <!-- Display product information -->
{% endif %}

 

 

If you're not familiar with coding, I recommend using an app to help you hide specific products from all accounts except yours like: LockSmith, B: B2B Lock Password Protect,...

 

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 3 (3)

BSSCommerce-B2B
Shopify Partner
1969 564 566

@VBNTG, Change the status of product to draft 

BSSCommerceB2B_1-1724248901364.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

VBNTG
Visitor
2 0 0

But if i make it a draft it won't show in my store and i can't edit it. 

I just want to edit it in my online store and see how it looks like, but I don't want the customers to see the product.

 

BSSCommerce-B2B
Shopify Partner
1969 564 566

This is an accepted solution.

@VBNTG, shopify doesn't provide the feature like that.
If you're comfortable with coding, you can assign a product tag to the items you want to hide and a different tag to the customers you want to show them to. When you log in with that customer account, you'll be able to see the product, while it remains hidden from others.

 

{% assign show_product = true %}
{% if product.tags contains "hide" %}
  {% unless customer and customer.tags contains "show" %}
    <!-- This product will be hidden -->
    {% assign show_product = false %}
  {% endunless %}
{% endif %}

{% if show_product %}
  <!-- Display product information -->
{% endif %}

 

 

If you're not familiar with coding, I recommend using an app to help you hide specific products from all accounts except yours like: LockSmith, B: B2B Lock Password Protect,...

 

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now