Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 3.2 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.2
- README.md +4 -0
- admin/class-tinymce-buttons.php +1 -1
- public/class-vars.php +21 -21
- readme.txt +4 -0
- wc-shortcodes.php +1 -1
README.md
CHANGED
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
66 |
|
67 |
## Changelog ##
|
68 |
|
|
|
|
|
|
|
|
|
69 |
### Version 3.1
|
70 |
|
71 |
* updated wpc settings framework to version 1.0.3
|
66 |
|
67 |
## Changelog ##
|
68 |
|
69 |
+
### Version 3.2
|
70 |
+
|
71 |
+
* updated old image path to new image path
|
72 |
+
|
73 |
### Version 3.1
|
74 |
|
75 |
* updated wpc settings framework to version 1.0.3
|
admin/class-tinymce-buttons.php
CHANGED
@@ -65,6 +65,6 @@ class WPC_Shortcodes_TinyMCE_Buttons {
|
|
65 |
public function register_plugin_styles() {
|
66 |
global $wp_styles;
|
67 |
|
68 |
-
wp_enqueue_style('wc-font-awesome-styles', WC_SHORTCODES_PLUGIN_URL . '
|
69 |
}
|
70 |
}
|
65 |
public function register_plugin_styles() {
|
66 |
global $wp_styles;
|
67 |
|
68 |
+
wp_enqueue_style('wc-font-awesome-styles', WC_SHORTCODES_PLUGIN_URL . 'public/assets/css/font-awesome.css', array(), WC_SHORTCODES_VERSION, 'all');
|
69 |
}
|
70 |
}
|
public/class-vars.php
CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
|
|
8 |
*
|
9 |
* @var string
|
10 |
*/
|
11 |
-
const VERSION = '3.
|
12 |
const DB_VERSION = '1.0';
|
13 |
|
14 |
/**
|
@@ -78,52 +78,52 @@ class WPC_Shortcodes_Vars {
|
|
78 |
'share_buttons_on_archive_page' => false,
|
79 |
'share_buttons_on_product_page' => false,
|
80 |
'facebook_font_icon' => 'fa-facebook',
|
81 |
-
'facebook_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
82 |
'twitter_font_icon' => 'fa-twitter',
|
83 |
-
'twitter_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
84 |
'pinterest_font_icon' => 'fa-pinterest',
|
85 |
-
'pinterest_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
86 |
'google_font_icon' => 'fa-google-plus',
|
87 |
-
'google_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
88 |
'bloglovin_font_icon' => 'fa-plus-square',
|
89 |
-
'bloglovin_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
90 |
'email_font_icon' => 'fa-envelope',
|
91 |
-
'email_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
92 |
'flickr_font_icon' => 'fa-flickr',
|
93 |
-
'flickr_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
94 |
'instagram_font_icon' => 'fa-instagram',
|
95 |
-
'instagram_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
96 |
'rss_font_icon' => 'fa-rss',
|
97 |
-
'rss_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
98 |
'custom1_font_icon' => 'fa-camera',
|
99 |
-
'custom1_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
100 |
'custom2_font_icon' => 'fa-shopping-cart',
|
101 |
-
'custom2_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
102 |
'custom3_font_icon' => 'fa-youtube',
|
103 |
-
'custom3_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
104 |
'custom4_font_icon' => 'fa-dollar',
|
105 |
-
'custom4_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
106 |
'custom5_font_icon' => 'fa-tumblr',
|
107 |
-
'custom5_social_icon' => WC_SHORTCODES_PLUGIN_URL . '
|
108 |
'share_buttons_format' => 'image',
|
109 |
'pinterest_share_text' => 'Pin it',
|
110 |
'pinterest_share_font_icon' => 'fa-pinterest',
|
111 |
-
'pinterest_share_button' => WC_SHORTCODES_PLUGIN_URL . '
|
112 |
'facebook_share_text' => 'Share',
|
113 |
'facebook_share_font_icon' => 'fa-facebook',
|
114 |
-
'facebook_share_button' => WC_SHORTCODES_PLUGIN_URL . '
|
115 |
'twitter_share_text' => 'Tweet',
|
116 |
'twitter_share_font_icon' => 'fa-twitter',
|
117 |
-
'twitter_share_button' => WC_SHORTCODES_PLUGIN_URL . '
|
118 |
'google_share_text' => 'Share',
|
119 |
'google_share_font_icon' => 'fa-google-plus',
|
120 |
-
'google_share_button' => WC_SHORTCODES_PLUGIN_URL . '
|
121 |
'email_share_text' => 'Email',
|
122 |
'email_share_font_icon' => 'fa-envelope',
|
123 |
-
'email_share_button' => WC_SHORTCODES_PLUGIN_URL . '
|
124 |
'print_share_text' => 'Print',
|
125 |
'print_share_font_icon' => 'fa-print',
|
126 |
-
'print_share_button' => WC_SHORTCODES_PLUGIN_URL . '
|
127 |
);
|
128 |
}
|
129 |
}
|
8 |
*
|
9 |
* @var string
|
10 |
*/
|
11 |
+
const VERSION = '3.2';
|
12 |
const DB_VERSION = '1.0';
|
13 |
|
14 |
/**
|
78 |
'share_buttons_on_archive_page' => false,
|
79 |
'share_buttons_on_product_page' => false,
|
80 |
'facebook_font_icon' => 'fa-facebook',
|
81 |
+
'facebook_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/facebook.png',
|
82 |
'twitter_font_icon' => 'fa-twitter',
|
83 |
+
'twitter_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/twitter.png',
|
84 |
'pinterest_font_icon' => 'fa-pinterest',
|
85 |
+
'pinterest_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/pinterest.png',
|
86 |
'google_font_icon' => 'fa-google-plus',
|
87 |
+
'google_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/google.png',
|
88 |
'bloglovin_font_icon' => 'fa-plus-square',
|
89 |
+
'bloglovin_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/bloglovin.png',
|
90 |
'email_font_icon' => 'fa-envelope',
|
91 |
+
'email_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/email.png',
|
92 |
'flickr_font_icon' => 'fa-flickr',
|
93 |
+
'flickr_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/flickr.png',
|
94 |
'instagram_font_icon' => 'fa-instagram',
|
95 |
+
'instagram_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/instagram.png',
|
96 |
'rss_font_icon' => 'fa-rss',
|
97 |
+
'rss_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/rss.png',
|
98 |
'custom1_font_icon' => 'fa-camera',
|
99 |
+
'custom1_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/picasa.png',
|
100 |
'custom2_font_icon' => 'fa-shopping-cart',
|
101 |
+
'custom2_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/shopping.png',
|
102 |
'custom3_font_icon' => 'fa-youtube',
|
103 |
+
'custom3_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/youtube.png',
|
104 |
'custom4_font_icon' => 'fa-dollar',
|
105 |
+
'custom4_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/etsy.png',
|
106 |
'custom5_font_icon' => 'fa-tumblr',
|
107 |
+
'custom5_social_icon' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/tumblr.png',
|
108 |
'share_buttons_format' => 'image',
|
109 |
'pinterest_share_text' => 'Pin it',
|
110 |
'pinterest_share_font_icon' => 'fa-pinterest',
|
111 |
+
'pinterest_share_button' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/pinterest.png',
|
112 |
'facebook_share_text' => 'Share',
|
113 |
'facebook_share_font_icon' => 'fa-facebook',
|
114 |
+
'facebook_share_button' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/facebook.png',
|
115 |
'twitter_share_text' => 'Tweet',
|
116 |
'twitter_share_font_icon' => 'fa-twitter',
|
117 |
+
'twitter_share_button' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/twitter.png',
|
118 |
'google_share_text' => 'Share',
|
119 |
'google_share_font_icon' => 'fa-google-plus',
|
120 |
+
'google_share_button' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/google.png',
|
121 |
'email_share_text' => 'Email',
|
122 |
'email_share_font_icon' => 'fa-envelope',
|
123 |
+
'email_share_button' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/email.png',
|
124 |
'print_share_text' => 'Print',
|
125 |
'print_share_font_icon' => 'fa-print',
|
126 |
+
'print_share_button' => WC_SHORTCODES_PLUGIN_URL . 'public/assets/img/print.png',
|
127 |
);
|
128 |
}
|
129 |
}
|
readme.txt
CHANGED
@@ -88,6 +88,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
|
|
91 |
= Version 3.1 =
|
92 |
|
93 |
* updated wpc settings framework to version 1.0.3
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
+
= Version 3.2 =
|
92 |
+
|
93 |
+
* updated old image path to new image path
|
94 |
+
|
95 |
= Version 3.1 =
|
96 |
|
97 |
* updated wpc settings framework to version 1.0.3
|
wc-shortcodes.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://webplantmedia.com/starter-themes/wordpresscanvas/features/sho
|
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
-
Version: 3.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
+
Version: 3.2
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|