Topbar login/ profile
-
Great plugin but got few questions/problems.
I created topbar login inline form (example: https://prntscr.com/kvxqt).
This was easy, just made custom login form and inserted<?php my_theme_login(); ?>
Then had some troubles with plugin showgin too many information like i don’t need gravaar so hide it with
display:none;
Then again there was “Your profile” which i removed by editing plugin files what is really bad (after every update i must do this).
How can i fix this?
I tried this but it won’t work.<?php function tml_title_filter( $title, $action ) { if ( 'profile' == $action ) return ''; return $title; } add_filter( 'tml_title', 'tml_title_filter', 2, 2 );
And second problem is i want to call profile page just like this
[theme-my-login default_action="profile" profile_template="my-profile-form.php"]
But id ddisplays error "all to undefined function get_user_to_edit() in themed-profile.php on line 192."
Can i somehow add hardcoded link to profile page?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Topbar login/ profile’ is closed to new replies.