Prestige Theme: How to remove H2 from footer?

Hello,

I’m using a new SEO tool for my website (www.aemmi.de) and the tool told me to remove the h2 tags in the footer.

I found the h2 tags in the code (footer liquid) but I’m not sure what to replace them with. Can someone help me please?

Hi @theithei ,

I am not familiar with Prestige theme, but there should be an option to leave it blank if you are entering the text.

  1. Go to Admin store > Online store > Themes > Customize

  2. Click on footer, and see if there is a textbox that you need enter. Try to leave it blank.

If this does not work this use, then code below.

  1. Go to Admin page > Online store > themes > Actions > Edit code
  2. Open the theme.css under the Asset folder then add the code below.
.Footer__Title.Heading {
display: none !important
}
1 Like

Thank you, maybe I was not clear with my initial post:

I know how to get rid of these headings, but thats not what I want. I still want them displayed, just not formatted with the h2 tag, but as a plain text. Do you know a way to do that?

Hi @theithei ,

Plain text meaning? Like a span tag?

If so, just find the <h2 and and change them like so:

For <h2 change the exact letters to <span

For change the exact letters to

Hi @theithei ,

In the Prestige them you can simply change these to div tags and they will appear the same.

For example, find:

## {{ block.settings.title | escape }}

Change to:

{{ block.settings.title | escape }}

Do similar for your other

tags in the footer.liquid file.

1 Like