By default, XadyTech will use Google Webfonts to design your campaign text. You can also prevent XadyTech from uploading these files if you are using custom fonts for your campaign or have already uploaded Google WebFonts to your site.
How to disable Google fonts in Blogger? - Disable Google Fonts |
Before You Start
- Here are some things to know before you begin:
The code in this guide should be added directly to your website. They can be added to the top or footer of your site.
Disable All Fonts
To disable FontAwesome and Google fonts from loading their campaigns on your site, add the following Javascript to your site:
<script type="text/javascript"> document.addEventListener('om.Scripts.init', function(event) { event.detail.Scripts.enabled.fonts= false; }); </script>
Disable Google Webfonts
To disable only Google web fonts from loading on your site for your campaigns, add the following Javascript to your site:
<script type="text/javascript"> document.addEventListener('om.Scripts.init', function(event) { event.detail.Scripts.enabled.fonts.googleFonts = false; }); </script>
Disable Font Awesome
To simply disable Font Awesome from loading your campaigns on your site, add the following Javascript to your site:
<script type="text/javascript"> document.addEventListener('om.Scripts.init', function(event) { event.detail.Scripts.enabled.fonts.fontAwesome = false; }); </script>