How can I remove 'tax included' from Craft theme product pages?

Hi, please can somebody help me remove the “tax included” from my product pages. I use the craft theme and would like it removed from all product pages.
Also with this, please can my description be moved up to fill the blank space under the product name where this will leave after the “tax included” is gone otherwise it will look off. I have previously removed the price so if the description can sit just under the title that will be great.

See below for reference

Store https://512f21.myshopify.com/products/arch-top-double-gate
psswd: Chameleon

Hey @CraigReep

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

To remove the “tax included” Add this code in your base.css or theme.css:

.product__tax.caption.rte {
    display: none;
}

As for your other question, I haven’t been able to identify the product descriptions; it seems like they might be hidden, right? In any case, you can adjust that space from your store’s customization panel. By selecting the relevant sections, you’ll be able to adjust the vertical spacing between them.

1 Like

Hi @CraigReep

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.product .product__tax.caption.rte {

display: none !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hi this as worked but can you minimise the gap between the product title and description?

Hi this as worked but can you minimise the gap between the product title and description? so that the description is closer to the title

Hey @CraigReep

Keep the previous code and add this new code above in theme.liquid end of the file.

.grid--1-col .grid__item .price {
    display: none !important;
}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like