I want to remove the section of where did you hear about us in debutify theme cart section.

I’m facing the problem when Items cart added, the scrolling social media is shown in the cart section. I want to remove it from the cart section. My store URL is: ummahcollections.com

1 Like

Hi @huju

  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.
select#order-feedback- {
    display: none !important;
}

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

If you are happy with my help, you can help me buy a COFFEE

Thanks!

Hello @huju

Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.

select#order-feedback- {
display: none !important;
}

Thanks

Hi @huju

You can try to find if it has an to disable it from your Online Store > Themes > Customize > Theme settings > Cart

Or from Online Store > Themes > Customize > click on menu at the top, middle, select Cart template.

If it does not have option to disable it then you can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings

.dbtfy-order-feedback { display: none !important; }
1 Like

Hi @huju

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
select#order-feedback- {
    display: none !important;
}

I hope this helps

Best,

Daisy

Hello @huju

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
select#order-feedback- {
display: none !important;
}