Skip to main content
All CollectionsAppointments & Events BookingsVirtual Events
How to hide translation button from your event widget?
How to hide translation button from your event widget?
Support avatar
Written by Support
Updated over 10 months ago

1. Go to your Shopify's themes settings select -> Edit code

Screen_Shot_2021-11-29_at_2.51.00_PM.png

2. Search for Assets and create a new asset. You can name it anything you want and click on Add asset.

Screen_Shot_2021-11-29_at_2.53.08_PM.png

3. Paste this code into the asset you have created in previous step and press Save button.

.svv-plain-list-header-languages-selector-container {
   display: none !important;
}
.svv-plain-list-header-calendar-switch-container {
   left: 20px !important;
}
.svv-mobile-lang-selector-wrapper .svv-languages-selector {
   display: none !important;
}

4. Now, go to your theme.liquid file and press Ctrl + f/ command + f to search "stylesheet" as shown in the picture.

Screen_Shot_2021-11-29_at_2.58.42_PM.png

5. Copy the whole line of stylesheet_tag starting from '##{{' till '}}' and paste it anywhere you want. Then, change the name of it to the name you given to your newly created asset. Here it's "hide-translation.css" and press Save.

Screen_Shot_2021-11-29_at_3.00.45_PM.png

Here you can see translation button is removed.

Screen_Shot_2021-11-29_at_3.01.53_PM.png

NOTE: If you want to unhide the translation button just remove that single line of code from theme.liquid.

Did this answer your question?