Air Reviews how to hide bottom in main page.

Topic summary

Issue: Request to hide the Air Reviews element fixed to the bottom of the homepage.

Key suggestions:

  • Identify the element’s CSS selector and hide it with display: none !important (CSS).
  • Add custom CSS in theme.liquid (before ) to target the element. Initial attempt didn’t work.
  • Provide store URL for inspection. A screenshot showed the element’s code reference.

Working approach:

  • Add CSS in theme.liquid near the end of the file, wrapped in a Liquid condition for the homepage (template.name == ‘index’). This targets only the main page and, as implemented, affected mobile screens.
  • Note: If CSS doesn’t apply (app-injected markup), contact the app provider.

Artifacts:

  • Images show the bottom bar and the successful result after hiding.

Outcome:

  • The homepage bottom element was successfully hidden (confirmed by the requester).
  • Scope: Hidden on the homepage; the example shown applies on mobile only. No further actions pending.
Summarized with AI on December 20. AI used: gpt-5.

Good day dear friends,

Please help, how can I fix small problem with Air Reviews bottom.

How to hide it?

Brgds.

2 Likes

Find the selector and add css display: none !important;

Hi @e-Naum

Would you mind sharing your store URL? Thanks!

Hi @e-Naum ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Hi .

d3aroma.com

Hi @e-Naum ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Hello. Doesn’t work. But I found it in the code.

Thanks for the info, chek this one if it work. If not then you need to contact the app provider.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “theme. Liquid” file. Find the tag and paste the code below before the tag.

{% if template.name == 'index' %}

{% endif %}

And Save.

Result:

Note: This only hide on the homepage and in mobile screen only.

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

1 Like

Thank U !!! Done :handshake: