- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Hi, looking for some help on adding code to SEO Header Code - currently I am able to hide price, qty, and Buy button
from indivduale product page as per below code
https://www.prestoprecisionplus.com/store/p8/SS-35-1%2F3-T.html
below is the code:
<style>
#wsite-com-product-buy, #wsite-com-product-inventory, #wsite-com-product-price-area { display:none; }
</style>
but now I would like to hide price from here as well: https://www.prestoprecisionplus.com/store/c8/Manual_Injectors.html
please help..
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
This is what I did and it works, but thanks for your help.
(this will remove buy button, remove price from category, remove price from products)
<style>
#wsite-com-product-buy, #wsite-com-product-inventory, #wsite-com-product-price-area { display:none; }
</style>
<style>
.wsite-com-product-price .wsite-com-price {
display:none !important;
}
</style>
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
according to my template
wsite-com-price wsite-com-category-product-price
I added this on same line but didn't work??
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Try adding just this (including the period) .wsite-com-price
If that doesn't seem to do anything, add an important declaration to the rule so you have
display: none !important;
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
This is what I did and it works, but thanks for your help.
(this will remove buy button, remove price from category, remove price from products)
<style>
#wsite-com-product-buy, #wsite-com-product-inventory, #wsite-com-product-price-area { display:none; }
</style>
<style>
.wsite-com-product-price .wsite-com-price {
display:none !important;
}
</style>

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Thanks for letting us know.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Hi, I'm really struggling with this and its' been bugging me for days, where do i insert this code onto my website? It's wholesale so the prices need to go really.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Add that code to Settings > SEO > Header Code, @evans97.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Good to know we can hide price in editing page(To some people it's not necessary)
But where should I type it?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Hi @Mitch_mooh Settings > SEO > Header Code is where it should be placed. Make sure to save and publish. Also keep in mind it may not show in the editor, but should show on the live site.
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Got it,thank you!
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Hi,
Can this code be adapted so that only specific categories no londer show a price?
TIA
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Dear all,
i am totally new to weebly, and i can not code.
But I would like to remove Price, buy and quantity from my article lists as well.
How can i do it?
Thank you in advance.
Jule
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Hi Jule. This thread might have some options you can try. If you see a suggestion to add a specific code you will place it under Settings>SEO>Header. Sometimes code does not work/show within the editor, so the best thing to do is copy/paste the code where I suggested, save & publish, then check the live site to see if it worked. If it did not work, go back to the settings area and delete the code before trying an alternative.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Just to help other people. I add a bit more code so that the buttons and cart dissappear as well.
<style>
#wsite-com-product-buy, #wsite-com-product-inventory, #wsite-com-product-price-area, #wsite-cart-bottom, #wsite-mini-cart, #wsite-nav-cart-a{ display:none; }
</style>
<style>
.wsite-com-product-price .wsite-com-price{
display:none !important;
}
</style>