Changeset 2443595
- Timestamp:
- 12/21/2020 12:12:46 PM (5 years ago)
- Location:
- hfd-integration/trunk
- Files:
-
- 4 edited
-
class/App.php (modified) (1 diff)
-
class/Setting.php (modified) (1 diff)
-
hfd-woocommerce-epost.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hfd-integration/trunk/class/App.php
r2409719 r2443595 409 409 { 410 410 /* @var \Hfd\Woocommerce\Setting $setting */ 411 $setting = Container::get( 'Hfd\Woocommerce\Setting');411 $setting = Container::get( 'Hfd\Woocommerce\Setting' ); 412 412 $setting->initDefaultSetting(); 413 413 } -
hfd-integration/trunk/class/Setting.php
r2409719 r2443595 49 49 ); 50 50 51 foreach ($_settings as $name => $value) { 52 if (!get_option($name)) { 53 update_option($name, $value); 54 } 51 foreach( $_settings as $name => $value ){ 52 $option_value = get_option( $name ); 53 if( !$option_value ){ 54 update_option( $name, $value ); 55 }else{ 56 if( strpos( $option_value, "http://" ) !== false ){ 57 update_option( $name, $value ); 58 } 59 } 55 60 } 56 61 } -
hfd-integration/trunk/hfd-woocommerce-epost.php
r2420649 r2443595 4 4 Plugin URI: 5 5 Description: Add shipping method of ePost, allowing the user on the checkout, to select the pickup location point from a google map popup. Also allows to synch the order to HFD API after the order is created. 6 Version: 1. 3.06 Version: 1.4.0 7 7 Author: HFD 8 8 Author URI: https://www.hfd.co.il -
hfd-integration/trunk/readme.txt
r2420649 r2443595 75 75 76 76 == Changelog == 77 = 1.4 = 78 * עדכון מעבר סנכרונים בלינק מאובטח פרוטוקול HTTPS 77 79 = 1.3 = 78 80 * שינוי טקסטים והוספת משלוח לאיסוף
Note: See TracChangeset
for help on using the changeset viewer.