Plugin Directory

Changeset 3343315


Ignore:
Timestamp:
08/12/2025 07:06:33 AM (8 months ago)
Author:
printess
Message:

Fixed wrong BillingCity variable name that prevented billing city to be pushed into the buyer side of the editor.

Location:
printess-editor/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • printess-editor/trunk/printess.php

    r3341111 r3343315  
    55 * Plugin URI: https://printess.com/kb/integrations/woo-commerce/index.html
    66 * Developer: Bastian Kröger (support@printess.com); Alexander Oser (support@printess.com)
    7  * Version: 1.6.57
     7 * Version: 1.6.58
    88 * Author: Printess
    99 * Author URI: https://printess.com
     
    1414 * Tested up to: 6.8
    1515 *
    16  * Woo: 10000:924016dfsfhsf8429842386wdff234sfd
     16 * Woo: 10000:924017dfsfhsf8429842386wdff234sfd
    1717 * WC requires at least: 5.8
    1818 * WC tested up to: 9.8.2
     
    367367        if(in_array("all", $filter_lookup) || in_array("billingemail", $filter_lookup))$form_fields["BillingEmail"] = $customer->billing["email"];
    368368        if(in_array("all", $filter_lookup) || in_array("billingphone", $filter_lookup))$form_fields["BillingPhone"] = $customer->billing["phone"];
    369         if(in_array("all", $filter_lookup) || in_array("", $filter_lookup))$form_fields["BillingCity"] = $customer->billing["city"];
     369        if(in_array("all", $filter_lookup) || in_array("billingcity", $filter_lookup))$form_fields["BillingCity"] = $customer->billing["city"];
    370370        if(in_array("all", $filter_lookup) || in_array("billingstate", $filter_lookup))$form_fields["BillingState"] = $customer->billing["state"];
    371371        if(in_array("all", $filter_lookup) || in_array("billingpostcode", $filter_lookup))$form_fields["BillingPostcode"] = $customer->billing["postcode"];
  • printess-editor/trunk/readme.txt

    r3341111 r3343315  
    315315= 1.6.57 =
    316316- Fixed bug that came in 1.6.56 in saving that did not save the current save token to the list of saved designs.
     317
     318= 1.6.58 =
     319- Fixed wrong BillingCity variable name that prevented billing city to be pushed into the buyer side of the editor.
Note: See TracChangeset for help on using the changeset viewer.