x

Store Front/Catalog without Offering Sales

We like the store front presentation and would like to provide a catalog of products but not sell online. Is this possible?

3,504 Views
Message 1 of 5
Report
1 Best Answer

Best Answer

We do much the same thing, Here is what I found about hiding the "add to card" and inventory options on your items. 

First, go to the live product page and use the Web Inspector to view your the product button code.

The ID for the product button is “wsite-com-product-buy”, so this is what I want to hide. Next, go to your product page in the editor and drag an Embed Code element to the long description area for the product. Then add this code:

<style>
#wsite-com-product-buy { display:none; }
</style>

Publish your site and check your product. Success! But you know what, I think I'd like to hide the inventory while I'm at it. Follow the same steps above and get the ID of the quantity field, “wsite-com-product-inventory”. Next, add it to your style code with a comma, so you now have:

<style>
#wsite-com-product-buy, #wsite-com-product-inventory { display:none; }
</style>

Publish again and check it out!

For full details here is the link I used: https://community.weebly.com/t5/eCommerce/Hide-the-Purchase-Button-on-an-Individual-Product-Page/td-...

I hope this helps you. 

View Best Answer >

3,622 Views
Message 5 of 5
Report
4 REPLIES 4

Hi, @nwmike!

I'm not sure this is possible, but if you let me know what you like about the store presentation, we can see if there is a way to recreate what you like.

Thanks,

Erin

Weebly Community Manager

3,500 Views
Message 2 of 5
Report

Can this be made a feature request? I believe there are probably quite a few users who would LOVE this option. To simply have the option for the button to say 'Call for price' or hide it altogether. Thank you.

3,456 Views
Message 3 of 5
Report
Square


@nwmike wrote:

Can this be made a feature request? I believe there are probably quite a few users who would LOVE this option. To simply have the option for the button to say 'Call for price' or hide it altogether. Thank you.


It's a great suggestion, @nwmike, and you can make it a feature request by posting it here:

https://community.weebly.com/t5/Vote-on-Features/idb-p/IdeaExchange

I did a little searching in Community, and this post by another member of the Community might help int he meantime (if you know CSS/HTML):

https://community.weebly.com/t5/eCommerce/Hide-the-Purchase-Button-on-an-Individual-Product-Page/m-p...

3,447 Views
Message 4 of 5
Report

Best Answer

We do much the same thing, Here is what I found about hiding the "add to card" and inventory options on your items. 

First, go to the live product page and use the Web Inspector to view your the product button code.

The ID for the product button is “wsite-com-product-buy”, so this is what I want to hide. Next, go to your product page in the editor and drag an Embed Code element to the long description area for the product. Then add this code:

<style>
#wsite-com-product-buy { display:none; }
</style>

Publish your site and check your product. Success! But you know what, I think I'd like to hide the inventory while I'm at it. Follow the same steps above and get the ID of the quantity field, “wsite-com-product-inventory”. Next, add it to your style code with a comma, so you now have:

<style>
#wsite-com-product-buy, #wsite-com-product-inventory { display:none; }
</style>

Publish again and check it out!

For full details here is the link I used: https://community.weebly.com/t5/eCommerce/Hide-the-Purchase-Button-on-an-Individual-Product-Page/td-...

I hope this helps you. 

3,623 Views
Message 5 of 5
Report