SysBasics Customize My Account for WooCommerce
Optimize your WooCommerce My account page also add new endpoints and manage existing endpoints with ease.
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 | 17 | — | Tag | 1 day ago |
| Endpoints | 23 | — | Tag | 1 day ago |
| My account | 24 | — | Tag | 1 day ago |
| customize | 105 | — | Tag | 1 day 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.9.2
- Last Updated
- Apr 03, 2026
- Requires WP
- 3.3+
- Tested Up To
- 6.9.4
- PHP Version
- 5.2 or higher
- Author
- SysBasics
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.1
- Reviews
- 30
- Support Threads
- 2
- Resolved
- 50%
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.