bhavyaw
Forum Replies Created
-
– I am also facing the similar issue. Instead of serving fonts from a local folder, fonts are being fetched from google.
– The snippet of font.css file generated by the plugin is attached below. You can see the url is referencing fonts via fonts.gstatic.com instead of serving fonts from local cache/caos-webfonts.
– I have used your plugin in some other site as well. There it was working just fine.
– Let me know, if I can help with troubleshooting. Can connect over skype or teamviewer– Eagerly waiting for a fix for this.
/** This file is automagically generated by CAOS for Webfonts
*
* @author: Daan van den Bergh
* @copyright: (c) 2019 Daan van den Bergh
* @url: https://daan.dev
*/
@font-face {
font-family: ‘Poppins’;
font-display: auto;
font-style: normal;
font-weight: 100;
src: url(‘https://fonts.gstatic.com/s/poppins/v8/pxiGyp8kv8JHgFVrLPTucHtA.woff2’) format(‘woff2’), /* Super Modern Browsers */ url(‘https://fonts.gstatic.com/s/poppins/v8/pxiGyp8kv8JHgFVrLPTucHtG.woff’) format(‘woff’), /* Modern Browsers */ url(‘https://fonts.gstatic.com/s/poppins/v8/pxiGyp8kv8JHgFVrLPTucHtF.ttf’) format(‘truetype’), /* Safari, Android, iOS */ url(‘https://fonts.gstatic.com/s/poppins/v8/pxiGyp8kv8JHgFVrLPTucHtE.eot’); /* IE9 Compatible */
}
@font-face {
font-family: ‘Poppins’;
font-display: auto;
font-style: normal;
font-weight: 200;
src: url(‘https://fonts.gstatic.com/s/poppins/v8/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2’) format(‘woff2’), /* Super Modern Browsers */ url(‘https://fonts.gstatic.com/s/poppins/v8/pxiByp8kv8JHgFVrLFj_Z1xlEw.woff’) format(‘woff’), /* Modern Browsers */ url(‘https://fonts.gstatic.com/s/poppins/v8/pxiByp8kv8JHgFVrLFj_Z1xlEA.ttf’) format(‘truetype’), /* Safari, Android, iOS */ url(‘https://fonts.gstatic.com/s/poppins/v8/pxiByp8kv8JHgFVrLFj_Z1xlEQ.eot’); /* IE9 Compatible */
`Regards
BhavyaForum: Plugins
In reply to: [WPSocialite] home page original_referer wrong url NOT domain.comIn arguments use get_permalink() function to fetch the right url
<?php $args = array( 'size' => 'large', //choose which size buttons to display. 'url' => get_permalink(), //use this to override the url that is sent to WPSocialite. Not recommended to use in loop. 'button_override' => 'facebook,twitter-share,twitter-follow,pinterest,linkedin,gplus,stumbleupon' //used to override buttons that are displayed. Add and remove as needed. ); wpsocialite_markup( $args ); ?>