Plugin Directory

Changeset 1480071


Ignore:
Timestamp:
08/21/2016 05:01:26 PM (10 years ago)
Author:
plutonwp
Message:

new version

Location:
pluton-product-sharing
Files:
17 added
2 edited

Legend:

Unmodified
Added
Removed
  • pluton-product-sharing/trunk/pluton-product-sharing.php

    r1466322 r1480071  
    44 * Plugin URI:          https://plutonwp.com/extension/pluton-product-sharing/
    55 * Description:         A simple plugin to add social share buttons to your product page.
    6  * Version:             1.0.0
     6 * Version:             1.0.1
    77 * Author:              PlutonWP
    88 * Author URI:          https://plutonwp.com/
     
    8787        $this->plugin_url       = plugin_dir_url( __FILE__ );
    8888        $this->plugin_path      = plugin_dir_path( __FILE__ );
    89         $this->version          = '1.0.0';
     89        $this->version          = '1.0.1';
    9090
    9191        register_activation_hook( __FILE__, array( $this, 'install' ) );
     
    218218        ) );
    219219
    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(
    221221            'label'         => esc_html__( 'Borders Color', 'pluton-product-sharing' ),
    222222            'section'       => 'pps_section',
    223223            'settings'      => 'pps_sharing_borders_color',
    224             'type'          => 'color',
    225224            'priority'      => 5,
    226225        ) ) );
     
    235234        ) );
    236235
    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(
    238237            'label'         => esc_html__( 'Icons Background Color', 'pluton-product-sharing' ),
    239238            'section'       => 'pps_section',
    240239            'settings'      => 'pps_sharing_icons_bg',
    241             'type'          => 'color',
    242240            'priority'      => 5,
    243241        ) ) );
     
    252250        ) );
    253251
    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(
    255253            'label'         => esc_html__( 'Icons Color', 'pluton-product-sharing' ),
    256254            'section'       => 'pps_section',
    257255            'settings'      => 'pps_sharing_icons_color',
    258             'type'          => 'color',
    259256            'priority'      => 5,
    260257        ) ) );
  • pluton-product-sharing/trunk/readme.txt

    r1466322 r1480071  
    44Requires at least: 4.0.0
    55Tested up to: 4.6
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232== Changelog ==
    3333
     34= 1.0.1 =
     35Customizer options improved.
     36
    3437= 1.0.0 =
    3538Initial release.
Note: See TracChangeset for help on using the changeset viewer.