Https://oscarliving.co.id

Hi everyone

I need your help to make this things at the bottom disappear ( RED BOX )

so when I do search, this result will be pop up at the bottom and I dont really like it

How can I make that dissapear and do it with CSS code ?

Website : www.oscarliving.co.id

No password

Theme : Empire 12

Thank you very much

Hi @OLIV1

First, please do not use links inthe topic title, but explain the main issue. Other members would find your topic if they have the same problem.

For that block, first check the Search template settings in theme customizer.
But that looks like a search for products, found a list of posts that have a search term.
And I am not sure if yo ucan disable Posts/Articles in some setting.

But if no luck, with CSS, you can hide it, but it will still be in the code. Try first in Search results section, on Search page in Theme customizer, under sections Custom css to use code below

.productgrid--footer {
  display: none !important;
}

or if it does not work at the end of assets/theme.css file, copy this code

.search--section .productgrid--footer {
  display: none !important;
}

and it will hide it. The first option is better because it is safe to update your theme and you do not lose custom code.

Instead of a CSS solution, you can search for productgrid--footer in theme editor and remove that block, but again, that could cause issues with theme update in the future.

Dear Laza

Thank you so much for The code

I did Try method Number 3 and It works perfectly Fine

and also Thank you for remind me regarding the Topics

Thank you very Much

1 Like