Advanced Custom Fields: Font Awesome Field - Version 1.1.2

Version Description

  • Fixed overly specific JS selector which was causing font preview icons to not load when used on taxonomy term pages
Download this release

Release Info

Developer mattkeys
Plugin Icon 128x128 Advanced Custom Fields: Font Awesome Field
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

Files changed (3) hide show
  1. acf-font-awesome.php +1 -1
  2. js/edit_input.js +1 -1
  3. readme.txt +10 -4
acf-font-awesome.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Advanced Custom Fields: Font Awesome
4
  Description: Add a Font Awesome field type to Advanced Custom Fields
5
- Version: 1.1.1
6
  Author: Matt Keys
7
  Author URI: http://mattkeys.me/
8
  License: GPLv2 or later
2
  /*
3
  Plugin Name: Advanced Custom Fields: Font Awesome
4
  Description: Add a Font Awesome field type to Advanced Custom Fields
5
+ Version: 1.1.2
6
  Author: Matt Keys
7
  Author URI: http://mattkeys.me/
8
  License: GPLv2 or later
js/edit_input.js CHANGED
@@ -61,7 +61,7 @@
61
  update_preview( this, $(this).val() );
62
  });
63
 
64
- $( 'div.field_type-font-awesome select.fa-select2-field' ).each( function() {
65
  $(this).select2({
66
  width : '100%'
67
  });
61
  update_preview( this, $(this).val() );
62
  });
63
 
64
+ $( '.field_type-font-awesome select.fa-select2-field' ).each( function() {
65
  $(this).select2({
66
  width : '100%'
67
  });
readme.txt CHANGED
@@ -1,8 +1,9 @@
1
  === Advanced Custom Fields: Font Awesome ===
2
  Contributors: mattkeys
 
3
  Tags: Advanced Custom Fields, ACF, Font Awesome, FontAwesome
4
  Requires at least: 3.5
5
- Tested up to: 3.8.1
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -25,7 +26,7 @@ This add-on will work with:
25
 
26
  == Installation ==
27
 
28
- This add-on can be treated as both a WP plugin and a theme include.
29
 
30
  = Plugin =
31
  1. Copy the 'acf-font-awesome' folder into your plugins folder
@@ -51,6 +52,9 @@ function my_register_fields()
51
 
52
  == Changelog ==
53
 
 
 
 
54
  = 1.1.1 =
55
  * Fixed JS error which was breaking conditional field select boxes
56
 
@@ -65,9 +69,11 @@ function my_register_fields()
65
 
66
  == Upgrade Notice ==
67
 
 
 
 
68
  = 1.1.1 =
69
  This version fixes a JS error caused by 1.1.0 that was causing issues with conditional field select boxes.
70
 
71
  = 1.1.0 =
72
- This version adds support for use in repeater fields and flexible content fields, and also fixes some small bugs.
73
-
1
  === Advanced Custom Fields: Font Awesome ===
2
  Contributors: mattkeys
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UTNU7YJG2KVPJ
4
  Tags: Advanced Custom Fields, ACF, Font Awesome, FontAwesome
5
  Requires at least: 3.5
6
+ Tested up to: 3.9
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
26
 
27
  == Installation ==
28
 
29
+ This add-on can be treated as both a WP plugin and a theme include (Use one or the other, plugin method is best practice).
30
 
31
  = Plugin =
32
  1. Copy the 'acf-font-awesome' folder into your plugins folder
52
 
53
  == Changelog ==
54
 
55
+ = 1.1.2 =
56
+ * Fixed overly specific JS selector which was causing font preview icons to not load when used on taxonomy term pages
57
+
58
  = 1.1.1 =
59
  * Fixed JS error which was breaking conditional field select boxes
60
 
69
 
70
  == Upgrade Notice ==
71
 
72
+ = 1.1.2 =
73
+ This version fixes an error causing font preview icons to not load properly when viewing font awesome fields on taxonomy term pages.
74
+
75
  = 1.1.1 =
76
  This version fixes a JS error caused by 1.1.0 that was causing issues with conditional field select boxes.
77
 
78
  = 1.1.0 =
79
+ This version adds support for use in repeater fields and flexible content fields, and also fixes some small bugs.