Changeset 3451636
- Timestamp:
- 02/01/2026 11:44:43 PM (8 weeks ago)
- Location:
- customize-my-account-for-woocommerce
- Files:
-
- 30 edited
- 1 copied
-
tags/3.7.7 (copied) (copied from customize-my-account-for-woocommerce/trunk)
-
tags/3.7.7/assets/css/desktop.ini (modified) (previous)
-
tags/3.7.7/assets/css/images/desktop.ini (modified) (previous)
-
tags/3.7.7/assets/fonts/desktop.ini (modified) (previous)
-
tags/3.7.7/assets/js/desktop.ini (modified) (previous)
-
tags/3.7.7/customize-my-account-for-woocommerce.php (modified) (1 diff)
-
tags/3.7.7/elementor-addon/desktop.ini (modified) (previous)
-
tags/3.7.7/elementor-addon/widgets/desktop.ini (modified) (previous)
-
tags/3.7.7/elementor-addon/widgets/templates/desktop.ini (modified) (previous)
-
tags/3.7.7/elementor-addon/widgets/templates/horizontal-navigation.php (modified) (2 diffs)
-
tags/3.7.7/elementor-addon/widgets/templates/vertical-navigation.php (modified) (2 diffs)
-
tags/3.7.7/include/frontend/desktop.ini (modified) (previous)
-
tags/3.7.7/languages/desktop.ini (modified) (previous)
-
tags/3.7.7/readme.txt (modified) (2 diffs)
-
tags/3.7.7/templates/myaccount/menu_default.php (modified) (1 diff)
-
tags/3.7.7/templates/myaccount/vertical_menu_shape.php (modified) (1 diff)
-
trunk/assets/css/desktop.ini (modified) (previous)
-
trunk/assets/css/images/desktop.ini (modified) (previous)
-
trunk/assets/fonts/desktop.ini (modified) (previous)
-
trunk/assets/js/desktop.ini (modified) (previous)
-
trunk/customize-my-account-for-woocommerce.php (modified) (1 diff)
-
trunk/elementor-addon/desktop.ini (modified) (previous)
-
trunk/elementor-addon/widgets/desktop.ini (modified) (previous)
-
trunk/elementor-addon/widgets/templates/desktop.ini (modified) (previous)
-
trunk/elementor-addon/widgets/templates/horizontal-navigation.php (modified) (2 diffs)
-
trunk/elementor-addon/widgets/templates/vertical-navigation.php (modified) (2 diffs)
-
trunk/include/frontend/desktop.ini (modified) (previous)
-
trunk/languages/desktop.ini (modified) (previous)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/templates/myaccount/menu_default.php (modified) (1 diff)
-
trunk/templates/myaccount/vertical_menu_shape.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
customize-my-account-for-woocommerce/tags/3.7.7/customize-my-account-for-woocommerce.php
r3451352 r3451636 4 4 Plugin URI: https://sysbasics.com 5 5 Description: Customize My account page. Add/Edit/Remove Endpoints. 6 Version: 3.7. 66 Version: 3.7.7 7 7 Author: SysBasics 8 8 Author URI: https://sysbasics.com -
customize-my-account-for-woocommerce/tags/3.7.7/elementor-addon/widgets/templates/horizontal-navigation.php
r3447327 r3451636 759 759 $show_avatar = 'yes'; 760 760 } 761 762 763 if ($show_avatar == 'yes') { 761 762 $user_avatar_enable = wcmamtx_is_module_enabled_init("user-avatar"); 763 764 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 764 765 echo do_shortcode('[sysBasics-user-avatar]'); 765 766 } … … 1003 1004 1004 1005 1005 if ( $show_avatar == 'yes') {1006 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 1006 1007 echo do_shortcode('[sysBasics-user-avatar]'); 1007 1008 } -
customize-my-account-for-woocommerce/tags/3.7.7/elementor-addon/widgets/templates/vertical-navigation.php
r3447327 r3451636 755 755 756 756 757 if ( $show_avatar == 'yes') {757 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 758 758 echo do_shortcode('[sysBasics-user-avatar]'); 759 759 } … … 997 997 998 998 999 if ( $show_avatar == 'yes') {999 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 1000 1000 echo do_shortcode('[sysBasics-user-avatar]'); 1001 1001 } -
customize-my-account-for-woocommerce/tags/3.7.7/readme.txt
r3451352 r3451636 7 7 WC Requires at least: 4.0 8 8 Requires PHP: 5.2 9 Stable tag: 3.7. 69 Stable tag: 3.7.7 10 10 Requires Plugins: woocommerce 11 11 License: GPLv2 or later … … 146 146 == Changelog == 147 147 148 Version 3.7.1 - 01 February 2026 149 148 Version 3.7.7 - 01 February 2026 149 150 - Fix - Automatic disable of user avatar. 150 151 - Enhancement - Modular countof for count bubble. 151 152 - Enhancement - Show orders or downloads count on any custom endpoint. -
customize-my-account-for-woocommerce/tags/3.7.7/templates/myaccount/menu_default.php
r3447327 r3451636 101 101 102 102 103 if ( $show_avatar == 'yes') {103 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 104 104 echo do_shortcode('[sysBasics-user-avatar]'); 105 105 } -
customize-my-account-for-woocommerce/tags/3.7.7/templates/myaccount/vertical_menu_shape.php
r3450246 r3451636 17 17 18 18 19 if (($show_avatar == 'yes') && ( $user_avatar_enable == "yes") ) {19 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 20 20 echo do_shortcode('[sysBasics-user-avatar]'); 21 21 } -
customize-my-account-for-woocommerce/trunk/customize-my-account-for-woocommerce.php
r3451352 r3451636 4 4 Plugin URI: https://sysbasics.com 5 5 Description: Customize My account page. Add/Edit/Remove Endpoints. 6 Version: 3.7. 66 Version: 3.7.7 7 7 Author: SysBasics 8 8 Author URI: https://sysbasics.com -
customize-my-account-for-woocommerce/trunk/elementor-addon/widgets/templates/horizontal-navigation.php
r3447327 r3451636 759 759 $show_avatar = 'yes'; 760 760 } 761 762 763 if ($show_avatar == 'yes') { 761 762 $user_avatar_enable = wcmamtx_is_module_enabled_init("user-avatar"); 763 764 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 764 765 echo do_shortcode('[sysBasics-user-avatar]'); 765 766 } … … 1003 1004 1004 1005 1005 if ( $show_avatar == 'yes') {1006 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 1006 1007 echo do_shortcode('[sysBasics-user-avatar]'); 1007 1008 } -
customize-my-account-for-woocommerce/trunk/elementor-addon/widgets/templates/vertical-navigation.php
r3447327 r3451636 755 755 756 756 757 if ( $show_avatar == 'yes') {757 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 758 758 echo do_shortcode('[sysBasics-user-avatar]'); 759 759 } … … 997 997 998 998 999 if ( $show_avatar == 'yes') {999 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 1000 1000 echo do_shortcode('[sysBasics-user-avatar]'); 1001 1001 } -
customize-my-account-for-woocommerce/trunk/readme.txt
r3451352 r3451636 7 7 WC Requires at least: 4.0 8 8 Requires PHP: 5.2 9 Stable tag: 3.7. 69 Stable tag: 3.7.7 10 10 Requires Plugins: woocommerce 11 11 License: GPLv2 or later … … 146 146 == Changelog == 147 147 148 Version 3.7.1 - 01 February 2026 149 148 Version 3.7.7 - 01 February 2026 149 150 - Fix - Automatic disable of user avatar. 150 151 - Enhancement - Modular countof for count bubble. 151 152 - Enhancement - Show orders or downloads count on any custom endpoint. -
customize-my-account-for-woocommerce/trunk/templates/myaccount/menu_default.php
r3447327 r3451636 101 101 102 102 103 if ( $show_avatar == 'yes') {103 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 104 104 echo do_shortcode('[sysBasics-user-avatar]'); 105 105 } -
customize-my-account-for-woocommerce/trunk/templates/myaccount/vertical_menu_shape.php
r3450246 r3451636 17 17 18 18 19 if (($show_avatar == 'yes') && ( $user_avatar_enable == "yes") ) {19 if (($show_avatar == 'yes') && (isset($user_avatar_enable) && ($user_avatar_enable == "yes")) ) { 20 20 echo do_shortcode('[sysBasics-user-avatar]'); 21 21 }
Note: See TracChangeset
for help on using the changeset viewer.