Home › Forums › WoodMart support forum › Removing Product Price From Shop + More
Removing Product Price From Shop + More
- This topic has 7 replies, 2 voices, and was last updated 6 years, 11 months ago by Artem Temos.
-
AuthorPosts
-
January 3, 2018 at 1:00 pm #31391
taylordprintsParticipant1) I am trying to remove the price from being shown in the shop section of our website. See Attached image.
2) I would also like to remove “Weight” from showing up in my extra info. It’s important to still keep the weight data, I just don’t want it shown in the additional details.
3) Is there any way to hide products by tag, attribute or category from showing in the shop, but still shown if directly linked to said tag, attribute or category?
Attachments:
You must be logged in to view attached files.January 3, 2018 at 1:40 pm #31403
Artem TemosKeymasterHello,
We are glad to know that you considered using WoodMart for your web-site. I hope you will be happy with it.
1. To hide the price on the shop page you can add the following code snippet to the Custom CSS area in Theme Settings
div.product-grid-item .price { display: none; }
2. Here is a code for this also
.woodmart-hover-base .hover-content table tr:first-child { display: none; }
3. Unfortunately, there is no such ability in WooCommerce and in our theme.
Kind Regards
XtemosJanuary 3, 2018 at 1:44 pm #31404
taylordprintsParticipantThank you very much for your fast response! You answered my questions perfectly.
If it’s all the same, instead of starting a new thread, I’ll ask something else too, real quick.
1) How do I remove the banner background image/color in the titles? Do I have to change a setting on each page, or is there a way to change this globally?
– If possible, I would like to add an HTML block under the page title. Again, globally. Any direction to make this happen would be appreciated as well!
2) I’d like to remove product sku from product meta
3) Enlarge final price and CTAThank you again for all your help!
Attachments:
You must be logged in to view attached files.January 3, 2018 at 2:09 pm #31418
Artem TemosKeymaster1. This option can be disabled globally in Theme Settings -> Page heading. It may be also uploaded for particular pages separately so you may need to remove it for some page in Dashboard -> Pages.
2. Try this code
.sku_wrapper { display: none!important; }
3. Use this code for that
.woocommerce-variation-price .amount { font-size: 28px!important; } .single_add_to_cart_button { padding: 20px 30px!important; font-size: 20px!important; } .quantity input[type=button], .quantity input[type=number] { height: 58px!important; }
January 3, 2018 at 2:18 pm #31419
taylordprintsParticipant1) Any suggestions on how to add an HTML block under shop page titles?
(Green highlight shows where I am aiming to place the block)2) Why is my header hanging over the title area so much?
Attachments:
You must be logged in to view attached files.January 3, 2018 at 2:27 pm #31424
taylordprintsParticipantAnd as far as removing the image/design behind the titles, it seems like I only have the option to completely remove the title, not just the background.
Attachments:
You must be logged in to view attached files.January 3, 2018 at 3:31 pm #31433
taylordprintsParticipantI’d appreciate any more feedback as I am still working to fix these issues. Thank you.
January 3, 2018 at 3:52 pm #31440
Artem TemosKeymaster1. You can do this only customizing our template files. Find the page title function and add your custom code in the file
inc/template-tags.php
.2. You can disable this with the following CSS code
.woodmart-header-advanced div.page-title { margin-top: -40px; }
-
AuthorPosts
- You must be logged in to create new topics. Login / Register