Changeset 3371386
- Timestamp:
- 10/01/2025 07:11:02 PM (6 months ago)
- Location:
- subaccounts-for-woocommerce/trunk
- Files:
-
- 3 edited
-
public/my-account.php (modified) (1 diff)
-
readme.txt (modified) (8 diffs)
-
subaccounts-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
subaccounts-for-woocommerce/trunk/public/my-account.php
r3370032 r3371386 1665 1665 } 1666 1666 1667 if ( empty( $existing_children_ids ) ) {1667 if ( ! empty( $existing_children_ids ) ) { 1668 1668 1669 1669 // Check if user is a Manager. -
subaccounts-for-woocommerce/trunk/readme.txt
r3370032 r3371386 4 4 Tested up to: 6.8 5 5 Requires PHP: 5.7 6 Stable tag: 1.8. 06 Stable tag: 1.8.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 36 36 * Allow customers to create/add new subaccounts (up to 10 subaccounts for each parent account in the free version). 37 * Ability for a parent account to to edit subaccount details (Account Details, Billing Address, Shipping Address) directly from its*My Account* area.37 * Ability for parent accounts to edit subaccount details (Account Details, Billing Address, Shipping Address) directly from their own *My Account* area. 38 38 * Ability for parent accounts to view subaccount orders directly from their *My Account* area. 39 39 * Ability for parent accounts to switch to any subaccounts using our advanced and secure user switching system. … … 58 58 * Each parent account (Manager) can create an unlimited number of subaccounts. 59 59 * Create, set and fully manage subaccounts directly from backend (as an administrator). 60 * Force subaccounts to inherit the billing/shipping address from their parent account.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 parent account on behalf of a subaccount or by a subaccount itself).60 * Force subaccounts to inherit billing and shipping addresses from their parent account. 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). 62 62 * Display parent accounts and subaccounts information in WooCommerce orders list page. 63 63 * Display parent accounts and subaccounts information in WordPress users list page. … … 146 146 From version 1.0.8, the following shortcodes are available: 147 147 148 ` sfwc_user_switcher`149 ` sfwc_manage_subaccounts`150 ` sfwc_add_subaccount`151 ` sfwc_subaccount_orders` (Available only if Sub-User mode is active)148 `[sfwc_user_switcher]` 149 `[sfwc_manage_subaccounts]` 150 `[sfwc_add_subaccount]` 151 `[sfwc_subaccount_orders]` (Available only if Sub-User mode is active) 152 152 153 153 = Does the plugin work on multisite installations? = … … 171 171 == Changelog == 172 172 173 = 1.8.1 = 174 *Release Date October 1, 2025* 175 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. 177 173 178 = 1.8.0 = 174 179 *Release Date September 30, 2025* … … 176 181 * **New** – The User Switcher form is now available as a shortcode `[sfwc_user_switcher]`. 177 182 * **Improvement** – Code improvements in the "Filter Orders" frontend form. 178 * **Improvement** – Improved compatibility with theJohn Blackbourn's "User Switching" plugin.179 * **Improvement** – Improved compatibility with theThemekraft's "BuddyPress Integration for WooCommerce" plugin (premium version).183 * **Improvement** – Improved compatibility with John Blackbourn's "User Switching" plugin. 184 * **Improvement** – Improved compatibility with Themekraft's "BuddyPress Integration for WooCommerce" plugin (premium version). 180 185 * **Improvement** – Update Freemius SDK to version 2.12.2. 181 186 * **Fix** – Fix `First Name`, `Last Name` and `Email` checkout fields not populating correctly if Multi-User mode is enabled and a subaccount is logged-in. … … 186 191 * **Tweak** – In the frontend `Add Subaccount` form, hide the "Company" field if Multi-User mode is enabled. 187 192 * **Tweak** – Changed the names of the plugin shortcodes. 188 * **Tweak** – Removed the thefull stop punctuation mark at the end of field labels in plugin settings pages.193 * **Tweak** – Removed the full stop punctuation mark at the end of field labels in plugin settings pages. 189 194 * **Tweak** – Minor CSS changes. 190 195 * **Dev** – CSS and JS assets grouped by packages. … … 210 215 * **Fix** – When sanitizing order numbers, preserve alphanumeric strings. 211 216 * **Fix** – Fix attempt to read property "roles" on false in the helper function `sfwc_is_user_role_valid()`. 212 * **Fix** – Fix call to a member function get_user_id() on falsewhen WooCommerce `Email Improvements` option is enabled.217 * **Fix** – Fix `call to a member function get_user_id() on false` on the WooCommerce email preview screen when WooCommerce `Email Improvements` option is enabled. 213 218 * **Tweak** – By default show all orders on the `Subaccount Orders` page in the frontend. 214 219 * **Tweak** – Moved the `Subaccounts` menu item before the `Settings` item in the admin area. -
subaccounts-for-woocommerce/trunk/subaccounts-for-woocommerce.php
r3370032 r3371386 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. 06 * Version: 1.8.1 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. 0' ); // MAJOR.MINOR.PATCH100 define( 'SFWC_CURRENT_VERSION', '1.8.1' ); // MAJOR.MINOR.PATCH 101 101 } 102 102
Note: See TracChangeset
for help on using the changeset viewer.