Shortcodes by Angie Makes - Version 3.13

Version Description

Download this release

Release Info

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

Code changes from version 3.12 to 3.13

README.md CHANGED
@@ -100,10 +100,16 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
100
 
101
  ## Frequently Asked Questions ##
102
 
 
 
103
  [How do I use the shortcode manager?](http://knowledgebase.angiemakes.com/how-to-use-visual-manager-for-shortcodes/?cat=24)
104
 
105
  ## Changelog ##
106
 
 
 
 
 
107
  ### Version 3.12 ###
108
 
109
  * Updated readme file
100
 
101
  ## Frequently Asked Questions ##
102
 
103
+ ### Links To Help Articles For Common Questions ###
104
+
105
  [How do I use the shortcode manager?](http://knowledgebase.angiemakes.com/how-to-use-visual-manager-for-shortcodes/?cat=24)
106
 
107
  ## Changelog ##
108
 
109
+ ### Version 3.13 ###
110
+
111
+ * Fixed bug with button attribute.
112
+
113
  ### Version 3.12 ###
114
 
115
  * Updated readme file
public/class-vars.php CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
8
  *
9
  * @var string
10
  */
11
- const VERSION = '3.12';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
8
  *
9
  * @var string
10
  */
11
+ const VERSION = '3.13';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
public/widgets/widget-button.php CHANGED
@@ -16,10 +16,10 @@ class WPC_Shortcodes_Widget_Button extends WPC_Shortcodes_Widget_Base {
16
 
17
  <div id="wc-shortcodes-button-widget-<?php echo $this->number; ?>" class="wc-shortcodes-visual-manager">
18
  <p>
19
- <label for="<?php echo $this->get_field_id('button_type'); ?>"><?php _e('Button Type:'); ?></label>
20
- <select class="wc-shortcodes-widget-option" id="<?php echo $this->get_field_id('button_type'); ?>" name="<?php echo $this->get_field_name('button_type'); ?>">
21
  <?php foreach ( WPC_Shortcodes_Widget_Options::color_types() as $key => $value ) : ?>
22
- <option value="<?php echo $key; ?>"<?php selected( $o['button_type'], $key ); ?>><?php echo $value; ?></option>';
23
  <?php endforeach; ?>
24
  </select>
25
  </p>
16
 
17
  <div id="wc-shortcodes-button-widget-<?php echo $this->number; ?>" class="wc-shortcodes-visual-manager">
18
  <p>
19
+ <label for="<?php echo $this->get_field_id('type'); ?>"><?php _e('Button Type:'); ?></label>
20
+ <select class="wc-shortcodes-widget-option" id="<?php echo $this->get_field_id('type'); ?>" name="<?php echo $this->get_field_name('type'); ?>">
21
  <?php foreach ( WPC_Shortcodes_Widget_Options::color_types() as $key => $value ) : ?>
22
+ <option value="<?php echo $key; ?>"<?php selected( $o['type'], $key ); ?>><?php echo $value; ?></option>';
23
  <?php endforeach; ?>
24
  </select>
25
  </p>
public/widgets/widget-social-icons.php CHANGED
@@ -51,7 +51,7 @@ class WPC_Shortcodes_Widget_Social_Icons extends WP_Widget {
51
  ?>
52
 
53
  <div id="wc-shortcodes-social-icons-widget-<?php echo $this->number; ?>" class="wc-shortcodes-visual-manager">
54
- <p class="wcs-instruction">You can configure your social icons in your <a href="<?php echo WPC_Shortcodes_Vars::$plugin_settings_url . '&wpcsf_active_tab=wc-shortcodes-options-social-icons-options-tab'; ?>" target="_blank">Shortcode Settings Page</a>.</p>
55
  <?php if ( ! isset( $o['wc_shortcodes_using_visual_manager'] ) ) : ?>
56
  <p>
57
  <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:') ?></label>
51
  ?>
52
 
53
  <div id="wc-shortcodes-social-icons-widget-<?php echo $this->number; ?>" class="wc-shortcodes-visual-manager">
54
+ <p class="wcs-instruction">You can configure your social icons in your <a href="<?php echo WPC_Shortcodes_Vars::$plugin_settings_url . '&wpcsf_active_tab=wc-shortcodes-options-social-media-options-tab'; ?>" target="_blank">Shortcode Settings Page</a>.</p>
55
  <?php if ( ! isset( $o['wc_shortcodes_using_visual_manager'] ) ) : ?>
56
  <p>
57
  <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:') ?></label>
readme.txt CHANGED
@@ -100,6 +100,8 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
100
 
101
  == Frequently Asked Questions ==
102
 
 
 
103
  [How do I use the shortcode manager?](http://knowledgebase.angiemakes.com/how-to-use-visual-manager-for-shortcodes/?cat=24)
104
 
105
  == Screenshots ==
@@ -111,6 +113,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
111
 
112
  == Changelog ==
113
 
 
 
 
 
114
  = Version 3.12 =
115
 
116
  * Updated readme file
100
 
101
  == Frequently Asked Questions ==
102
 
103
+ = Links To Help Articles For Common Questions =
104
+
105
  [How do I use the shortcode manager?](http://knowledgebase.angiemakes.com/how-to-use-visual-manager-for-shortcodes/?cat=24)
106
 
107
  == Screenshots ==
113
 
114
  == Changelog ==
115
 
116
+ = Version 3.13 =
117
+
118
+ * Fixed bug with button attribute.
119
+
120
  = Version 3.12 =
121
 
122
  * Updated readme file
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.12
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.13
9
  License: GPLv2 or later
10
  */
11