Changeset 3371821
- Timestamp:
- 10/02/2025 02:02:06 PM (6 months ago)
- Location:
- subaccounts-for-woocommerce/trunk
- Files:
-
- 3 edited
-
public/my-account.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
subaccounts-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
subaccounts-for-woocommerce/trunk/public/my-account.php
r3371386 r3371821 4866 4866 } 4867 4867 } 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. 4870 4870 } 4871 4871 … … 5050 5050 return $checkout_fields; 5051 5051 } 5052 add_ action( 'woocommerce_checkout_fields','sfwc_multi_user_make_certain_fields_readonly' );5052 add_filter( 'woocommerce_checkout_fields','sfwc_multi_user_make_certain_fields_readonly' ); 5053 5053 5054 5054 -
subaccounts-for-woocommerce/trunk/readme.txt
r3371386 r3371821 4 4 Tested up to: 6.8 5 5 Requires PHP: 5.7 6 Stable tag: 1.8. 16 Stable tag: 1.8.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 57 58 58 * Each parent account (Manager) can create an unlimited number of subaccounts. 59 * Create, set and fully manage subaccounts directly frombackend (as an administrator).59 * Create, assign and fully manage subaccounts directly from the WordPress backend (as an administrator). 60 60 * Force subaccounts to inherit billing and shipping addresses from their parent account. 61 61 * 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). … … 171 171 == Changelog == 172 172 173 = 1.8.2 = 174 *Release Date October 2, 2025* 175 176 * **Fix** – Properly return checkout fields for standalone customers. 177 173 178 = 1.8.1 = 174 179 *Release Date October 1, 2025* 175 180 176 * **Fix** – Fix Managers not being able to view subaccount orders when Sub-User mode is enabled and the orderlist 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. 177 182 178 183 = 1.8.0 = -
subaccounts-for-woocommerce/trunk/subaccounts-for-woocommerce.php
r3371386 r3371821 4 4 * Plugin URI: https://subaccounts.pro/ 5 5 * Description: Subaccounts for WooCommerce allows the creation of subaccounts for your WooCommerce customers and subscribers. 6 * Version: 1.8. 16 * Version: 1.8.2 7 7 * Requires Plugins: woocommerce 8 8 * Author: Mediaticus … … 98 98 99 99 if ( ! defined( 'SFWC_CURRENT_VERSION' ) ) { 100 define( 'SFWC_CURRENT_VERSION', '1.8. 1' ); // MAJOR.MINOR.PATCH100 define( 'SFWC_CURRENT_VERSION', '1.8.2' ); // MAJOR.MINOR.PATCH 101 101 } 102 102
Note: See TracChangeset
for help on using the changeset viewer.