Tagged: download button, hide, price, range
-
AuthorPosts
-
March 19, 2016 at 2:00 pm #26167
Hi, I am still confused, how to hide price range in gallery?
$1.99 – 24.99
March 20, 2016 at 1:14 am #26169I removed the range display by altering php code. That was 3 months ago. Don’t remember which file I changed.
People might have easier way to do it.
March 20, 2016 at 10:27 am #26172Hi Songquan, Thank you,
I paced to Shop settings, Product settings and Woocommerce settings but but have not found the settings I want ^_^
March 20, 2016 at 10:10 pm #26177Hi,
here are CSS codes that I’m using with Symbiostock Express theme (add it to your child theme or to Symbiostock Express > Advanced Settings > Custom CSS Box):
/* Hide prices */ .post-type-archive-product .product_price { display: none; } /* hide the price underneath the thumbnails on shop pages */ .tax-product_cat .product_price { display: none; } /* hide the price underneath the thumbnails on product category pages */ .tax-product_tag .product_price { display: none; } /* hide the price underneath the thumbnails on product tag pages */ .single-product .pricebox { display: none; } /* hide the price on single product pages */ .home #home-product-carousel .product_price { display: none; } /* hide the price underneath the thumbnails on home product carousel */ .single-product #upsale-product-carousel .product_price { display: none; } /* hide the price underneath the thumbnails on upsale product carousel */ .single-product #related-product-carousel .product_price { display: none; } /* hide the price underneath the thumbnails on related product carousel */ /* Hide prices END */
Those codes will hide all prices, but you can delete rows that you don’t need.
March 21, 2016 at 2:41 am #26184The following custom CSS code does the job in my theme, I hope it does in yours,or just search and tweak a little, if you get what it does.
div[itemtype=”http://schema.org/Offer”] > .price {display:none!important;}
(but I won’t remove it for my site, as I find it interesting quoting 3-49 euro, I think it makes easier for the client to pay 15 or 19)
March 21, 2016 at 8:27 am #26188Hi Henri,
Hi airphogrYeay…! it’s done. after an exhausting search… Thank you 😀
February 1, 2017 at 11:40 am #29439I know it is an old thread. Sorry to bring it up.
I am struggling to hide the price range on shop page and pasted the code above into the custom css box but nothing changes.
Is there anything else I need to do to get it working? Thanks for any replies.
February 1, 2017 at 2:48 pm #29441All right! After painful try-and-error and intensive research, I finally get it work! Use the CSS code below:
.post-type-archive-product .price { display: none; } /* Hide price on shop page */
.tax-product_cat .price { display: none; } /* Hide price on category page */
.tax-product_tag .price { display: none; } /* Hide price on tag page */February 19, 2019 at 8:34 pm #34169Hi,
I have the same problem, can any one help, I have tried the above code but its not working. I have placed the code in divi theme Custom CSS area. I want to hide the title and price rang of the product on main page.
http://doerstock.com/Thanks in advance
February 20, 2019 at 6:05 pm #34194May 21, 2020 at 7:45 pm #36730Hi!
I have a Symbiostock Express -theme installed and tried to get those work with Code Snippets -plugin and also in Theme Customize page Add CSS but no luck. What I’m doing wrong here?
I try to achieve that all images are free to download and there would be just Free Download -button in image detail page instead of Add to cart -button.
Cheers,
Juha
November 8, 2020 at 9:53 pm #37909Hi guys,
sorry I have to bring this up again.. I tried all the codes above but the price below the image just doesnt disappear.
Is there any other solution for this problem.
Thanks,
Olaf
https://www.travelbild.net/image-download-shop/ -
AuthorPosts
You must be logged in to reply to this topic.