Changeset 1480071
- Timestamp:
- 08/21/2016 05:01:26 PM (10 years ago)
- Location:
- pluton-product-sharing
- Files:
-
- 17 added
- 2 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/css (added)
-
tags/1.0.1/assets/css/rtl.css (added)
-
tags/1.0.1/assets/css/style.css (added)
-
tags/1.0.1/assets/css/style.min.css (added)
-
tags/1.0.1/assets/css/style.scss (added)
-
tags/1.0.1/assets/js (added)
-
tags/1.0.1/assets/js/customizer.js (added)
-
tags/1.0.1/assets/js/customizer.min.js (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/pluton-product-sharing.pot (added)
-
tags/1.0.1/pluton-product-sharing.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/template (added)
-
tags/1.0.1/template/social-share.php (added)
-
trunk/pluton-product-sharing.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pluton-product-sharing/trunk/pluton-product-sharing.php
r1466322 r1480071 4 4 * Plugin URI: https://plutonwp.com/extension/pluton-product-sharing/ 5 5 * Description: A simple plugin to add social share buttons to your product page. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: PlutonWP 8 8 * Author URI: https://plutonwp.com/ … … 87 87 $this->plugin_url = plugin_dir_url( __FILE__ ); 88 88 $this->plugin_path = plugin_dir_path( __FILE__ ); 89 $this->version = '1.0. 0';89 $this->version = '1.0.1'; 90 90 91 91 register_activation_hook( __FILE__, array( $this, 'install' ) ); … … 218 218 ) ); 219 219 220 $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'pps_sharing_borders_color', array(220 $wp_customize->add_control( new Pluton_Customizer_Color_Control( $wp_customize, 'pps_sharing_borders_color', array( 221 221 'label' => esc_html__( 'Borders Color', 'pluton-product-sharing' ), 222 222 'section' => 'pps_section', 223 223 'settings' => 'pps_sharing_borders_color', 224 'type' => 'color',225 224 'priority' => 5, 226 225 ) ) ); … … 235 234 ) ); 236 235 237 $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'pps_sharing_icons_bg', array(236 $wp_customize->add_control( new Pluton_Customizer_Color_Control( $wp_customize, 'pps_sharing_icons_bg', array( 238 237 'label' => esc_html__( 'Icons Background Color', 'pluton-product-sharing' ), 239 238 'section' => 'pps_section', 240 239 'settings' => 'pps_sharing_icons_bg', 241 'type' => 'color',242 240 'priority' => 5, 243 241 ) ) ); … … 252 250 ) ); 253 251 254 $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'pps_sharing_icons_color', array(252 $wp_customize->add_control( new Pluton_Customizer_Color_Control( $wp_customize, 'pps_sharing_icons_color', array( 255 253 'label' => esc_html__( 'Icons Color', 'pluton-product-sharing' ), 256 254 'section' => 'pps_section', 257 255 'settings' => 'pps_sharing_icons_color', 258 'type' => 'color',259 256 'priority' => 5, 260 257 ) ) ); -
pluton-product-sharing/trunk/readme.txt
r1466322 r1480071 4 4 Requires at least: 4.0.0 5 5 Tested up to: 4.6 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 == Changelog == 33 33 34 = 1.0.1 = 35 Customizer options improved. 36 34 37 = 1.0.0 = 35 38 Initial release.
Note: See TracChangeset
for help on using the changeset viewer.