1. Go to WP Admin -> Plugins -> Editor -> WPLMS Customizer -> customizer_class.php
2. Add the following line in _construct function :
PHP Code:
add_action('wp_enqueue_scripts', array($this,'typekit_fonts'));
3. Add the following function in class:
PHP Code:
function typekit_fonts(){ echo ' <script type="text/javascript" src="//use.typekit.net/xxxxxx.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> '; }
4. Now note the names of your fonts and go to WP Admin -> WPLMS Options -> Fonts Manager
5. Add their names in Custom font family names.
Now go to WP Admin -> Appearance -> Customizer and you'll the Typekit font names in the dropdown font list and you can now use these fonts in your theme.