SysBasics Customize My Account for WooCommerce
Manage/customize WooCommerce My Account Page along with endpoints, user avatar , account/registration fields and much more
Next Milestone 10K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| user avatar | 18 | — | Tag | 9 hours ago |
| Endpoints | 22 | — | Tag | 9 hours ago |
| My account | 26 | — | Tag | 9 hours ago |
| customize | 107 | — | Tag | 9 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 3.4.16
- Last Updated
- Jan 12, 2026
- Requires WP
- 3.3+
- Tested Up To
- 6.9
- PHP Version
- 5.2 or higher
- Author
- SysBasics
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4
- Reviews
- 24
- Support Threads
- 1
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about SysBasics Customize My Account for WooCommerce
function wcmamtx_show_dashboard_links_function() {
return 'yes';
}
Now visit WPML/string translation and click on “Translate texts in admin screens” link at the bottom.
There search for wcmamtx_advanced_settings and wcmamtx_plugin_options and check the fields you want to translate. Then apply the changes.
Now visit WPML/String translation and translate your strings there.
Is plugin compatible with WPML Sticky links ?
Yes
Can plugin used without elementor or with other page builders ?
Yes
Is it possible to override MY Account text in wicget with something like hello,username ?
yes. First make sure you have version 2.5.11 or higher then you can use below given hook to modify default text
add_filter('wcmamtx_my_account_nav_widget_text','wcmamtx_my_account_nav_widget_text_function',10,1);
function wcmamtx_my_account_nav_widget_text_function($default_text) {
if ( !is_user_logged_in() ) {
return $default_text;
}
$current_user = wp_get_current_user();
$user_name= $current_user->display_name;
$default_text = 'Hello , '.ucfirst($user_name).'';
return $default_text;
}
use above give php code snippet . you may use code snippets plugin to inject any extra php code.