Shortcodes by Angie Makes - Version 3.15

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Shortcodes by Angie Makes
Version 3.15
Comparing to
See all releases

Code changes from version 3.14 to 3.15

README.md CHANGED
@@ -106,6 +106,11 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
106
 
107
  ## Changelog ##
108
 
 
 
 
 
 
109
  ### Version 3.14 ###
110
 
111
  * Fixed bug with pricing shortcode color options.
106
 
107
  ## Changelog ##
108
 
109
+ ### Version 3.15 ###
110
+
111
+ * Fixed javascript bug that was breaking visual manager in Google Chrome.
112
+ * Removed angiemakes.com from default url.
113
+
114
  ### Version 3.14 ###
115
 
116
  * Fixed bug with pricing shortcode color options.
admin/assets/js/shortcodes-tinymce-4.js CHANGED
@@ -109,7 +109,7 @@
109
  {
110
  text: "Button",
111
  onclick: function(){
112
- var shortcode = '[wc_button type="primary" url="http://angiemakes.com" title="Visit Site" target="self" position="float"]' + wcDummyContent + '[/wc_button]';
113
  wcShortcodes( shortcode, editor );
114
  }
115
  },
@@ -168,7 +168,7 @@
168
  {
169
  text: "Pricing Table",
170
  onclick: function(){
171
- var shortcode = '[wc_pricing type="primary" plan="Basic" cost="$19.99" per="per month" button_url="http://angiemakes.com" button_text="Sign Up" button_target="self" button_rel="nofollow"]<ul><li>30GB Storage</li><li>512MB Ram</li><li>10 databases</li><li>1,000 Emails</li><li>25GB Bandwidth</li></ul>[/wc_pricing]';
172
  wcShortcodes( shortcode, editor );
173
  }
174
  },
109
  {
110
  text: "Button",
111
  onclick: function(){
112
+ var shortcode = '[wc_button type="primary" url="" title="Visit Site" target="self" position="float"]' + wcDummyContent + '[/wc_button]';
113
  wcShortcodes( shortcode, editor );
114
  }
115
  },
168
  {
169
  text: "Pricing Table",
170
  onclick: function(){
171
+ var shortcode = '[wc_pricing type="primary" plan="Basic" cost="$19.99" per="per month" button_url="" button_text="Sign Up" button_target="self" button_rel="nofollow"]<ul><li>30GB Storage</li><li>512MB Ram</li><li>10 databases</li><li>1,000 Emails</li><li>25GB Bandwidth</li></ul>[/wc_pricing]';
172
  wcShortcodes( shortcode, editor );
173
  }
174
  },
admin/assets/js/wc-shortcodes.js CHANGED
@@ -78,7 +78,7 @@
78
  }
79
 
80
  var getTag = function( shortcode ) {
81
- var tag = '', last = '', a = ''; aa = '';
82
 
83
  a = shortcode.split(/\n/);
84
 
78
  }
79
 
80
  var getTag = function( shortcode ) {
81
+ var tag = '', last = '', a = '', aa = '';
82
 
83
  a = shortcode.split(/\n/);
84
 
public/class-vars.php CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
8
  *
9
  * @var string
10
  */
11
- const VERSION = '3.14';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
@@ -171,7 +171,7 @@ class WPC_Shortcodes_Vars {
171
  );
172
  self::$attr->button = array(
173
  'type' => 'primary', // or inverse
174
- 'url' => 'http://angiemakes.com',
175
  'title' => 'Visit Site',
176
  'target' => 'self',
177
  'rel' => '',
8
  *
9
  * @var string
10
  */
11
+ const VERSION = '3.15';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
171
  );
172
  self::$attr->button = array(
173
  'type' => 'primary', // or inverse
174
+ 'url' => '',
175
  'title' => 'Visit Site',
176
  'target' => 'self',
177
  'rel' => '',
readme.txt CHANGED
@@ -113,6 +113,11 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
113
 
114
  == Changelog ==
115
 
 
 
 
 
 
116
  = Version 3.14 =
117
 
118
  * Fixed bug with pricing shortcode color options.
113
 
114
  == Changelog ==
115
 
116
+ = Version 3.15 =
117
+
118
+ * Fixed javascript bug that was breaking visual manager in Google Chrome.
119
+ * Removed angiemakes.com from default url.
120
+
121
  = Version 3.14 =
122
 
123
  * Fixed bug with pricing shortcode color options.
wc-shortcodes.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
- Version: 3.14
9
  License: GPLv2 or later
10
  */
11
 
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
+ Version: 3.15
9
  License: GPLv2 or later
10
  */
11