SysBasics
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce My Account page endpoints not working@shyamvenkat which built in buttons stopped working after activating our plugin ? kindly proivde more details
thanks for your feedback.
That notice has been removed with 2.8.22 ,
can you tell me more about it crashing the my account page ?
Update to latest version should have fixed all this issue.
best regards
thanks for your feedback . Much appreciated.
update to latest version. should work fine now
update to latest version. should work fine now
Thanks for the review. Feel free to contact in case you are need of any help.
best regards
Glad issue is resolved. let me know if you need further help on this. Meanwhile i am marking it as resolved. Kindly rate the plugin if you like it.
Anyone facing similar issue should visit endpoints tab and click on save changes. It should be resolved.
in case you are still looking for solution.
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.
Best Regards
By any chance are you using any plugins to filter out role based css js files ?
otherwise our plugin do not load assets to particular role.
in case you are still looking for solution ,
does issue gets resolved if you deactivate our plugin ?
its not possible yet .
I will consider adding it for future updates.
Thanks for your feeback. Much Appreciated.
Best Regards