Changeset 2336462
- Timestamp:
- 07/07/2020 05:58:08 AM (6 years ago)
- Location:
- woo-advance-product-gallery/trunk
- Files:
-
- 2 edited
-
advance-product-gallery.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-advance-product-gallery/trunk/advance-product-gallery.php
r2105237 r2336462 4 4 Author: Acespritech Solutions Pvt. Ltd. 5 5 Author URI: https://acespritech.com/ 6 Version: 1.1.06 Version: 2.1.0 7 7 Domain Path: /languages/ 8 8 Requires WooCommerce: 2.2 … … 86 86 $zoom_setting = esc_attr(get_option("wapg_zoom_setting")); 87 87 $gallery_position = esc_attr(get_option("wapg_gallery_position")); 88 $action = sanitize_text_field($_GET['update']);88 @$action = sanitize_text_field($_GET['update']); 89 89 if($action == 'success'){ 90 90 ?> … … 101 101 <select name="zoom-style"> 102 102 <option selected="" disabled="">Select Option</option> 103 <option <?php if($zoom_setting == 'inner'){ echo 'selected';} ?> value="inner"> Inner</option>103 <option <?php if($zoom_setting == 'inner'){ echo 'selected';} ?> value="inner">Default</option> 104 104 <option <?php if($zoom_setting == 'outer'){ echo 'selected';} ?> value="outer">Outer</option> 105 105 </select> … … 170 170 <?php 171 171 global $product; 172 $product_id = $product-> id;172 $product_id = $product->get_ID(); 173 173 $product = new WC_product($product_id); 174 $attachment_ids = $product->get_gallery_ attachment_ids();174 $attachment_ids = $product->get_gallery_image_ids(); 175 175 $i = 1; 176 176 -
woo-advance-product-gallery/trunk/readme.txt
r2105259 r2336462 1 1 === WooCommerce Advance Product Gallery === 2 2 Contributors: Acespritech 3 Requires PHP: 5.2.44 3 Donate link: https://example.com/ 5 4 Tags: wordpress, product, gallery, thumbnail, zoom, php 6 Requires at least: 2.35 Requires at least: 5.1 7 6 Requires PHP: 5.2.4 8 Tested up to: 5. 19 Stable tag: 1.07 Tested up to: 5.4.1 8 Stable tag: 2.0 10 9 11 10 Design your product gallery thumbnail easily. … … 26 25 * first version release 27 26 27 = 2.0 = 28 * 08/05/2020 29 * second version release 30 28 31 == Upgrade Notice == 29 32
Note: See TracChangeset
for help on using the changeset viewer.