WPIntell

Source evidence

Updated Font Libraries

Post Featured Font Icon · support · 2014-08-15T15:54:00+00:00

complaintsentiment
mediumseverity
0.8relevance
5replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 26 rows with source links

15.4% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Garth Koyle unresolved
It looks like this is using Font Awesome 4.0.3. Any chance this could be updated to use Font Awesome 4.1? https://wordpress.org/plugins/post-featured-font-icon/ Thanks for your suggestion. May be in next version soon 🙂 Thanks for your suggestion. May be in next version soon 🙂 Dear Kishores, Thanks for your plugin which works well as it is. To add more on Garth request I looked forward and discovered that the plugin is loading the fontawsome css from the plugin so I tweaked the post-featured-font-icon.php file to ask both icon_picker_scripts() and load_icon_style_scripts() to pick up the css file from the source at //maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css and it works well. Then I realized that the new icons where still not showing up in the list then I had to tweak the incon-picker.js to add in the icon list the icon name I was expecting to use and it works as expected 🙂 As you see I’m a tweaker, not a developper so I’m not going to share my crappy version of your plugin 😉 but perhaps it should be nice if the next version should be both using the last css from fontawsome and the list self updating from “I dont know where” 🙂 Last suggestion : if we could have an admin page to select the custom post type it may avoid the manual update witch is risky from updating the plugin. I hope that my english is understandable enough for my post to be usefull, Cheers, Vincent thanks I will check.. I’m very very busy these days. I will try to improve this // Our filter callback function function icon_post_type_callback( $types ) { $types = array(‘post’, ‘page’, ‘product’); return $types; } add_filter( ‘icon_post_type’, ‘icon_post_type_callback’, 10, 1 ); for custom post types

Comments

5 shown
Kishores 2014-08-15T16:45:00+00:00

Thanks for your suggestion. May be in next version soon 🙂

Kishores 2014-08-15T16:45:00+00:00

Thanks for your suggestion. May be in next version soon 🙂

vince.fr 2015-04-30T13:50:00+00:00

Dear Kishores, Thanks for your plugin which works well as it is. To add more on Garth request I looked forward and discovered that the plugin is loading the fontawsome css from the plugin so I tweaked the post-featured-font-icon.php file to ask both icon_picker_scripts() and load_icon_style_scripts() to pick up the css file from the source at //maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css and it works well. Then I realized that the new icons where still not showing up in the list then I had to tweak the incon-picker.js to add in the icon list the icon name I was expecting to use and it works as expected 🙂 As you see I’m a tweaker, not a developper so I’m not going to share my crappy version of your plugin 😉 but perhaps it should be nice if the next version should be both using the last css from fontawsome and the list self updating from “I dont know where” 🙂 Last suggestion : if we could have an admin page to select the custom post type it may avoid the manual update witch is risky from updating the plugin. I hope that my english is understandable enough for my post to be usefull, Cheers, Vincent

Kishores 2015-05-04T15:32:00+00:00

thanks I will check.. I’m very very busy these days. I will try to improve this

Kishores 2015-05-04T15:34:00+00:00

// Our filter callback function function icon_post_type_callback( $types ) { $types = array(‘post’, ‘page’, ‘product’); return $types; } add_filter( ‘icon_post_type’, ‘icon_post_type_callback’, 10, 1 ); for custom post types