How To Remove "YOU MAY ALSO LIKE" from Refresh theme

So it appears these free shopify themes ha"you may also like" section that spams random products in this section and has little popups in lower right corner all over the site. These are sections that can not be edited in the theme settings that I can find. It is not the recommended products tab under products. Is there anyway to remove them?

Hi @beta1963 ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:

Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/ section-related-products.css->paste below code at the bottom of the file

.related-products {
   display: none;
}

Hope my answer will help you

Thank you for this, but it did not affect anything. The spam products are still there… unless there is an update delay or something?

It is like it is a built in Ad Display that I can not access or edit in anyway. All we did was select a free theme and install it. It seems some of the other free themes has this as well.

Please share your store URL

So that I can check and help you.

Thank you

https://dornbbq.com/

it shows up on bottom of home page, and all the other pages like the product page. I have never seen this before, but I have only used paid themes in the past.

Well after looking at your site I think it’s some kind of AD. It may come from some 3rd party software.

it is a brand new store with the theme that was just installed. There is no way to remove it?

you can try add this code to bottom of base.css :

#adeagle-native-placeholder {
    display: none !important;
}
#adeagle-block-placeholder {
    display: none !important;
}

Hey that worked on the Home page! so where do I put it to get off catalog/product page and contact pages?

You can add this code:

div#adeagle-topbar-placeholder {
    display: none !important;
}
div#adeagle-topbar-placeholder {
    display: none !important;
}

thank you so much for that, it looks like that did the trick. one last thing, there is still the pop up in lower right. any code to stop it?

Yeah, you can add this code :

div#adeagle-placeholder {
    display: none !important;
}

Thank you so much, this got the last of them… for now. No idea why Shopify would allow this spam in their free themes.