How can I remove this text from my shopping and checkout pages?

My theme was initially from Debutify and I am editing in Shopify. I would like to remove these “Heading/Subheading” and “information below the text” pieces of text but I do not know coding. Could anyone assist me with this please?

1 Like

Hey @chloeebolt

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Hi Moeed,

Here is my URL: https://62dcf4-8e.myshopify.com/

There is no password.

Thank you for your help!

1 Like

Hey @chloeebolt

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

Hi @chloeebolt

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.drawer__inner-section.dbtfy-trust-badge-container h2, .drawer__inner-section.dbtfy-trust-badge-container p, .dbtfy-trust-badge .row.mb-3 {
    display: none !important;
}

And Save.

result:

I also fix the padding and corner of this area.

Add this code same instruction above.

.dbtfy-trust-badge.text-justify-content-start.text-start.color-background-1.color-bg.color-text {
    padding: 10px;
    border-radius: var(--border-radius);
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hello @chloeebolt
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.

.row.mb-3 {
display: none !important;
}
.pt-2.info-text.text-sm {
display: none !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks