Plugin Directory

Changeset 1196295


Ignore:
Timestamp:
07/10/2015 01:34:59 PM (11 years ago)
Author:
dzeriho
Message:

Raw commits.

Location:
improved-sale-badges-free-version/tags/1.0.1
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • improved-sale-badges-free-version/tags/1.0.1/improved-sale-badges-free.php

    r1196190 r1196295  
    55Description: Improved Sale Badges for WooCommerce- Free Version! Get Improved Sale Badges for WooCommerce Premium Version here http://bit.ly/1GN7IR4 - mihajlovicnenad.com
    66Author: Mihajlovic Nenad
    7 Version: 1.0.0
     7Version: 1.0.1
    88Author URI: http://www.mihajlovicnenad.com
    99*/
     
    2727            global $isb_set;
    2828       
    29             $isb_set['style'] = ( isset( $_POST['isb_style'] ) ? $_POST['isb_style'] : get_option( 'wc_settings_isb_style', 'isb_style_basic' ) );
     29            $isb_set['style'] = ( isset( $_POST['isb_style'] ) ? $_POST['isb_style'] : get_option( 'wc_settings_isb_style', 'isb_style_pop' ) );
    3030            $isb_set['color'] = ( isset( $_POST['isb_color'] ) ? $_POST['isb_color'] : get_option( 'wc_settings_isb_color', 'isb_red' ) );
    3131            $isb_set['position'] = ( isset( $_POST['isb_position'] ) ? $_POST['isb_position'] : get_option( 'wc_settings_isb_position', 'isb_right' ) );
  • improved-sale-badges-free-version/tags/1.0.1/includes/isb-settings.php

    r1196190 r1196295  
    9191                    }
    9292                    else {
    93                         $isb_class = 'isb_style_basic isb_red isb_right';
     93                        $isb_class = 'isb_style_pop isb_red isb_right';
    9494                    }
    9595
     
    193193           
    194194            $isb_set = array(
    195                 'style' => ( $_POST['data'][0] !== '' ? $_POST['data'][0] : get_option( 'wc_settings_isb_style', 'isb_style_basic' ) ),
     195                'style' => ( $_POST['data'][0] !== '' ? $_POST['data'][0] : get_option( 'wc_settings_isb_style', 'isb_style_pop' ) ),
    196196                'color' => ( $_POST['data'][1] !== '' ? $_POST['data'][1] : get_option( 'wc_settings_isb_color', 'isb_red' ) ),
    197197                'position' => ( $_POST['data'][2] !== '' ? $_POST['data'][2] : get_option( 'wc_settings_isb_position', 'isb_left' ) ),
     
    216216            }
    217217            else {
    218                 $isb_class = 'isb_style_basic isb_red isb_right';
     218                $isb_class = 'isb_style_pop isb_red isb_right';
    219219            }
    220220
  • improved-sale-badges-free-version/tags/1.0.1/readme.txt

    r1196192 r1196295  
    55Requires at least: 3.5
    66Tested up to: 4.2.2
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPL2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • improved-sale-badges-free-version/tags/1.0.1/woocommerce/loop/sale-flash.php

    r1196190 r1196295  
    131131        }
    132132        else {
    133             $isb_class = 'isb_style_basic isb_red isb_right';
     133            $isb_class = 'isb_style_pop isb_red isb_right';
    134134        }
    135135
  • improved-sale-badges-free-version/tags/1.0.1/woocommerce/single-product/sale-flash.php

    r1196190 r1196295  
    5151            }
    5252            else {
    53                 $isb_class = 'isb_style_basic isb_red isb_left';
     53                $isb_class = 'isb_style_pop isb_red isb_left';
    5454            }
    5555
     
    115115                }
    116116                else {
    117                     $isb_class = 'isb_style_basic isb_red isb_left';
     117                    $isb_class = 'isb_style_pop isb_red isb_left';
    118118                }
    119119
Note: See TracChangeset for help on using the changeset viewer.