How to get rid white space in footer (only in product pages)

Solved

How to get rid white space in footer (only in product pages)

Foxrux08
Excursionist
14 0 3

Guys can you help me i cant remove white space in footer only in product pages but in my home page its ok. i tried all tut in other concern related to this problems but nothing works. here my website 

https://rustia.co/

 

white space in footer.JPG

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
8485 2026 2487

This is an accepted solution.

Hi @Foxrux08 

The the reason of the space is an shopify app block. 

Check 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 </body> tag and paste the code below before the tag. 

 

{% if template == 'product' %}
<style>
div#goodst-product-status {
    display: none !important;
}
</style>
{% endif %}

 

And Save. 

Result:

Made4uoRibe_0-1708355710605.png

 

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
8485 2026 2487

This is an accepted solution.

Hi @Foxrux08 

The the reason of the space is an shopify app block. 

Check 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 </body> tag and paste the code below before the tag. 

 

{% if template == 'product' %}
<style>
div#goodst-product-status {
    display: none !important;
}
</style>
{% endif %}

 

And Save. 

Result:

Made4uoRibe_0-1708355710605.png

 

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Foxrux08
Excursionist
14 0 3
Many thanks Made4uo-Ribe it works. if you don't mind can you help me in this 🙂