How can i remove the related product on add to cart popup

Hi @ruglok , kindly provide your store URL please and if it is password protected, please share the password as well. Thanks

Hi @ruglok

Welcome to the community.

And I wanted to reply with just: Here you go!

But that would not be to kind to a new user like you. So I have to ask, can you share your store link?

You could also try to use a new editor search functionality and search for “With this products also buy”.

Thank you for a link.

For security reasons please edit your message and remove admin link.

Hi @ruglok,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.also_like_prod {
    display: none !important;
}

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! :rocket: ( BBD ‑ Big Bulk Discount - Volume Or Tier Discount - Boost Sales With Discounts | Shopify App Store ). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

Result:

here is store url

Not familiar with that theme and if there is a setting to hide that but you can edit

assets/engo-customizes.css file and find line 1458

.engo-popup .content .also_like_prod {
  border-top: 1px solid #eee;
  padding-top: 20px;
  position: relative;
}

and just add display none line

.engo-popup .content .also_like_prod {
  border-top: 1px solid #eee;
  padding-top: 20px;
  position: relative;
  display: none;
}

And save and refresh.

i did not find any of them file

showing this eror

Well that is strange. But like I said, not familiar with that theme and no way to check it on my side.

So you can try maybe to add code to end of style-main.scss.css, if it allows it,but just this

.engo-popup .content .also_like_prod {
  display: none !important;
}

Also check your product page in theme customizer, is there a “Product popup section” in list of current sections and if it is under Custom CSS try to add

.also_like_prod {
  display: none !important;
}

thanks for you support and solution…