Jordi Joan
Forum Replies Created
-
Forum: Plugins
In reply to: [Kebo Twitter Feed] Service Disruption – 24/02/2014Strange, still the same after a fresh installation of the plugin. I’ll try to debug the PHP later. I’ll keep you posted.
Forum: Plugins
In reply to: [Kebo Twitter Feed] Service Disruption – 24/02/2014It allows me to connect, the forward works just fine.
I’ve also tried revoking access to the application and granting again. No luck so far. No errors displayed in the error lists.
Forum: Plugins
In reply to: [Kebo Twitter Feed] Service Disruption – 24/02/2014Yeah I already tried both; saving settings and resetting the whole connection, no luck.
Forum: Plugins
In reply to: [Kebo Twitter Feed] Service Disruption – 24/02/2014Hi Peter,
Just wanted to let you know that yesterday was working OK but today it’s giving me the “Sorry, no Tweets were found.” message.
Thanks again!
Forum: Plugins
In reply to: [Kebo Twitter Feed] Service Disruption – 24/02/2014Me too I wanna thank you for your great plugin and for keeping us updated. Much appreciated. Keep up the good work!
Forum: Plugins
In reply to: [Simple Social Icons] Request: Skype IconAs the documentation says, you could include the icon in your functions.php:
function storm_social_icons_networks( $networks ) { $extra_icons = array ( 'skype' => array( // Enable this icon for any URL containing this text 'name' => 'Skype', // Default menu item label 'class' => 'skype', // Custom class 'icon' => 'fa fa-skype', // FontAwesome class 'icon-sign' => 'fa fa-skype' // May not be available. Check FontAwesome. ), ); $extra_icons = array_merge( $networks, $extra_icons ); return $extra_icons; } add_filter( 'storm_social_icons_use_latest', '__return_true' ); add_filter( 'storm_social_icons_networks', 'storm_social_icons_networks');
And be sure you allow links using the skype protocol. Also in functions.php:
function custom_allow_skype_protocol( $protocols ){ $protocols[] = 'skype'; return $protocols; } add_filter( 'kses_allowed_protocols' , 'custom_allow_skype_protocol' );
Cheers.