Custom Javascript
Last updated
Last updated
Custom Javascript lets you apply a custom javascript to your theme instantly by simply pasting your custom javascript to the editor and click Save button.
To use this feature, navigate to Custom Javascript tab.
If Custom CSS is disabled before, click Enable custom javascript button to enable again:
The page after enabled look like this:
When you paste your custom javascript to editor, the editor will automatically validate your code, it will show error or warning like this:
You can hover to those errors or warnings icons to see error detail:
In this example, we will show you how to add Google analytics to your store as easy as pie, just 1 click.
First, you need to go to Google developer page to get google analytics script: https://developers.google.com/analytics/devguides/collection/analyticsjs
let say you got script like bellow:
Remove <script>
and </script>
in the code above and replace UA-XXXXX-Y
with your Tracking ID. For example, I have Tracking ID is UA-123512352-1
, my final script will be:
Now go to Code Customizer > Put that script to the editor in Custom javascript section > Click Save button to save your changes:
After that, your Google analytics code will be applied to your online store immediately.
The first thing you need to do is go to your Facebook pixels manager > Setup > Manually add pixel code to website > And copy your pixel code, let say your pixel code like this:
Next, you remove these tags: <script> , </script>, and remove all blog code with <noscript> tag, the final result is:
Now go to Code Customizer > Put that script to the editor in Custom javascript section > Click Save button to save your changes:
After that, your Facebook pixel code will be applied to your online store immediately.
In previous examples, you see we only add a single script to your store. What about if you want to add both Google analytics and Facebook pixel? It's just easy as pie with Code Customizer, you just add both scripts to the editor like this:
Don't forget to leave a comment to each block code to separate and easy to manage
Video Tutorial: https://youtu.be/qEk5DgXE4Iw