Moving the logout link

This topic contains 7 replies, has 4 voices, and was last updated by  Deb Gold 6 years, 9 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket

Tagged: 

  • Author
    Posts
  • #389515

    Deb Gold
    Expired Member
    Post count: 46

    Hi there,

    We have a question: Is it possible to move the location of the logout link on what we call the My Account page?

    I will supply screenshots and links in a private reply below.

    Thank you!

    #389516

    Deb Gold
    Expired Member
    Post count: 46
    This reply has been marked as private.
    #389573

    Kor
    Moderator
    Post count: 16516

    Hi Deb,

    Please share WP temp admin access to your site so that I could try and see if it’s achievable with custom CSS? You can post the details here using the private reply option below.

    #389616

    Deb Gold
    Expired Member
    Post count: 46
    This reply has been marked as private.
    #389634

    Paolo
    Site Admin
    Post count: 31206

    I don’t think that’s feasible with css alone, but there could be a hook. The developers will let you know asap.

    Thanks

    #389637

    Kor
    Moderator
    Post count: 16516

    Hi Deb,

    Looks like this can’t be done using custom CSS. I will forward this to a developer for a second look.

    Thanks!

    #389731

    Giri
    Expired Member
    Post count: 3155

    You need to use css to hide the logout link and then use this snippet to add a logout link in the bottom.

    
    
    add_filter('geodir_dashboard_links', 'custom_geodir_dashboard_links');
    function custom_geodir_dashboard_links($dashboard_link) {
    	
    	$logout_link = wp_logout_url( home_url() );
    	$dashboard_link .= '<li>';
    	$dashboard_link .= '<i class="fa fa-user"></i>';
    	$dashboard_link .= '<a href="'.$logout_link.'">';
    	$dashboard_link .= __( 'Logout', 'geodirectory' );
    	$dashboard_link .= '</a>';
    	$dashboard_link .= '</li>';
    
    	
    	return $dashboard_link;
    }
    #389758

    Deb Gold
    Expired Member
    Post count: 46

    Perfect! Thank you!

Viewing 8 posts - 1 through 8 (of 8 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket