Changeset 1196295
- Timestamp:
- 07/10/2015 01:34:59 PM (11 years ago)
- Location:
- improved-sale-badges-free-version/tags/1.0.1
- Files:
-
- 5 edited
-
improved-sale-badges-free.php (modified) (2 diffs)
-
includes/isb-settings.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
woocommerce/loop/sale-flash.php (modified) (1 diff)
-
woocommerce/single-product/sale-flash.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
improved-sale-badges-free-version/tags/1.0.1/improved-sale-badges-free.php
r1196190 r1196295 5 5 Description: Improved Sale Badges for WooCommerce- Free Version! Get Improved Sale Badges for WooCommerce Premium Version here http://bit.ly/1GN7IR4 - mihajlovicnenad.com 6 6 Author: Mihajlovic Nenad 7 Version: 1.0. 07 Version: 1.0.1 8 8 Author URI: http://www.mihajlovicnenad.com 9 9 */ … … 27 27 global $isb_set; 28 28 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' ) ); 30 30 $isb_set['color'] = ( isset( $_POST['isb_color'] ) ? $_POST['isb_color'] : get_option( 'wc_settings_isb_color', 'isb_red' ) ); 31 31 $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 91 91 } 92 92 else { 93 $isb_class = 'isb_style_ basicisb_red isb_right';93 $isb_class = 'isb_style_pop isb_red isb_right'; 94 94 } 95 95 … … 193 193 194 194 $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' ) ), 196 196 'color' => ( $_POST['data'][1] !== '' ? $_POST['data'][1] : get_option( 'wc_settings_isb_color', 'isb_red' ) ), 197 197 'position' => ( $_POST['data'][2] !== '' ? $_POST['data'][2] : get_option( 'wc_settings_isb_position', 'isb_left' ) ), … … 216 216 } 217 217 else { 218 $isb_class = 'isb_style_ basicisb_red isb_right';218 $isb_class = 'isb_style_pop isb_red isb_right'; 219 219 } 220 220 -
improved-sale-badges-free-version/tags/1.0.1/readme.txt
r1196192 r1196295 5 5 Requires at least: 3.5 6 6 Tested up to: 4.2.2 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPL2 9 9 License 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 131 131 } 132 132 else { 133 $isb_class = 'isb_style_ basicisb_red isb_right';133 $isb_class = 'isb_style_pop isb_red isb_right'; 134 134 } 135 135 -
improved-sale-badges-free-version/tags/1.0.1/woocommerce/single-product/sale-flash.php
r1196190 r1196295 51 51 } 52 52 else { 53 $isb_class = 'isb_style_ basicisb_red isb_left';53 $isb_class = 'isb_style_pop isb_red isb_left'; 54 54 } 55 55 … … 115 115 } 116 116 else { 117 $isb_class = 'isb_style_ basicisb_red isb_left';117 $isb_class = 'isb_style_pop isb_red isb_left'; 118 118 } 119 119
Note: See TracChangeset
for help on using the changeset viewer.