Home Forums WoodMart support forum Removing Product Price From Shop + More

Removing Product Price From Shop + More

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #31391

    taylordprints
    Participant

    1) 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.
    #31403

    Artem Temos
    Keymaster

    Hello,

    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
    Xtemos

    #31404

    taylordprints
    Participant

    Thank 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 CTA

    Thank you again for all your help!

    Attachments:
    You must be logged in to view attached files.
    #31418

    Artem Temos
    Keymaster

    1. 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;
    }
    #31419

    taylordprints
    Participant

    1) 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.
    #31424

    taylordprints
    Participant

    And 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.
    #31433

    taylordprints
    Participant

    I’d appreciate any more feedback as I am still working to fix these issues. Thank you.

    #31440

    Artem Temos
    Keymaster

    1. 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;
    }
Viewing 8 posts - 1 through 8 (of 8 total)