Disable Currency Selector on Prestige theme (Mobile) Help

Hello,

Im trying to set up currency convertor app however the themes currency selector is making it not possible. Please help me find a way to remove it.

@waleed-kbt

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.SidebarMenu__CurrencySelector{
display: none;
}

Hope this helps.

Thanks!

@waleed-kbt

sorry for that issue can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media screen and (max-width: 1238px) {
.SidebarMenu .Drawer__Footer {
display: none !important;
}
}