Want to do some customization in your Vepaar account?
You can do customization on your website by using the Custom code feature. Vepaar provides you with two languages i.e. JavaScript and CSS to do any customization. They allow you to customize the appearance of your theme without the need to create a child theme or worry about theme updates overwriting your customizations.
- Login to your Vepaar account.
- Click on Store under the Dashboard section
- Click on Add new under Custom code.
There you will find Two languages to choose from.
Here is an example of a Custom CSS to hide the Login button, change the color of footer, to hide chat icon and to remove login dialogue at the checkout on the Store.
Custom CSS
body{ .footer{ background-color: red !important; } .footer .chat-launcher{ display: none !important; } .overflow-hidden.relative { border: none !important; } .overflow-hidden.relative .p-6 { display: none !important; } .header .login{ display: none !important; } }
Before :
After :