Changeset 1519308
- Timestamp:
- 10/21/2016 02:40:50 PM (9 years ago)
- Location:
- merchant-xml-feed-generator/trunk
- Files:
-
- 4 edited
-
gmpf-generator.php (modified) (1 diff)
-
gmpf-shipping.php (modified) (1 diff)
-
gmpf.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
merchant-xml-feed-generator/trunk/gmpf-generator.php
r1392794 r1519308 190 190 $variants = unserialize($variants); 191 191 192 if( in_array($product_id, $variants))192 if($variants && in_array($product_id, $variants)) 193 193 { 194 194 return true; -
merchant-xml-feed-generator/trunk/gmpf-shipping.php
r1323906 r1519308 69 69 $countries = $settings['countries']; 70 70 71 foreach($countries as $country) 72 { 73 $selected = ($country == $ship_to) ? 'selected' : ''; 74 $shipping_country .= '<option '.$selected.' value="'.$country.'">'.$country.'</option>'; 75 } 71 if($countries): 72 foreach($countries as $country) 73 { 74 $selected = ($country == $ship_to) ? 'selected' : ''; 75 $shipping_country .= '<option '.$selected.' value="'.$country.'">'.$country.'</option>'; 76 } 77 endif; 76 78 77 79 $shipping_country .= '</select>'; -
merchant-xml-feed-generator/trunk/gmpf.php
r1392795 r1519308 4 4 Plugin URI: http://www.gmpf.co.uk/ 5 5 Description: Create Feeds for Google Merchant - promote your WooCommerce store on Google 6 Version: 1.1. 36 Version: 1.1.4 7 7 Author: Nick Vaughan 8 8 Author URI: -
merchant-xml-feed-generator/trunk/readme.txt
r1392795 r1519308 45 45 == Changelog == 46 46 47 = 1.4 = 48 * Fixed in_array() expects parameter 2 to be array, boolean given error 49 * Fixed Invalid argument supplied for foreach() in shipping.php 50 47 51 = 1.2 = 48 52 * Fixed error when generating xml feed
Note: See TracChangeset
for help on using the changeset viewer.