Plugin Directory

Changeset 3371821


Ignore:
Timestamp:
10/02/2025 02:02:06 PM (6 months ago)
Author:
mediaticus
Message:

Deploy version 1.8.2

Location:
subaccounts-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • subaccounts-for-woocommerce/trunk/public/my-account.php

    r3371386 r3371821  
    48664866                }
    48674867            } else {           
    4868                 return; // If the user being edited has not a Manager above him,
    4869                         // there's no need to proceed.
     4868                return $checkout_fields; // If the user being edited has not a Manager above him,
     4869                                         // there's no need to proceed.
    48704870            }
    48714871           
     
    50505050    return $checkout_fields;
    50515051}
    5052 add_action( 'woocommerce_checkout_fields','sfwc_multi_user_make_certain_fields_readonly' );
     5052add_filter( 'woocommerce_checkout_fields','sfwc_multi_user_make_certain_fields_readonly' );
    50535053
    50545054
  • subaccounts-for-woocommerce/trunk/readme.txt

    r3371386 r3371821  
    44Tested up to: 6.8
    55Requires PHP: 5.7
    6 Stable tag: 1.8.1
     6Stable tag: 1.8.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757
    5858* Each parent account (Manager) can create an unlimited number of subaccounts.
    59 * Create, set and fully manage subaccounts directly from backend (as an administrator).
     59* Create, assign and fully manage subaccounts directly from the WordPress backend (as an administrator).
    6060* Force subaccounts to inherit billing and shipping addresses from their parent account.
    6161* On admin side, in both WooCommerce orders list and WooCommerce order pages, display information about who did actually placed an order (whether it was placed by a subaccount or by a parent account on behalf of a subaccount).
     
    171171== Changelog ==
    172172
     173= 1.8.2 =
     174*Release Date October 2, 2025*
     175
     176* **Fix** – Properly return checkout fields for standalone customers.
     177
    173178= 1.8.1 =
    174179*Release Date October 1, 2025*
    175180
    176 * **Fix** – Fix Managers not being able to view subaccount orders when Sub-User mode is enabled and the order list page is rendered via the `[sfwc_subaccount_orders]` shortcode.
     181* **Fix** – Fix Managers not being able to view subaccount orders when Sub-User mode is enabled and the subaccount orders list page is rendered via the `[sfwc_subaccount_orders]` shortcode.
    177182
    178183= 1.8.0 =
  • subaccounts-for-woocommerce/trunk/subaccounts-for-woocommerce.php

    r3371386 r3371821  
    44 * Plugin URI: https://subaccounts.pro/
    55 * Description: Subaccounts for WooCommerce allows the creation of subaccounts for your WooCommerce customers and subscribers.
    6  * Version: 1.8.1
     6 * Version: 1.8.2
    77 * Requires Plugins: woocommerce
    88 * Author: Mediaticus
     
    9898
    9999if ( ! defined( 'SFWC_CURRENT_VERSION' ) ) {
    100     define( 'SFWC_CURRENT_VERSION', '1.8.1' ); // MAJOR.MINOR.PATCH
     100    define( 'SFWC_CURRENT_VERSION', '1.8.2' ); // MAJOR.MINOR.PATCH
    101101}
    102102
Note: See TracChangeset for help on using the changeset viewer.