Login box in home page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #23215
    mr4top
    Member

    Hello

    I want to put login box to login user

    how can i do that ?

    I use Invent theme + woocommerce + ubermenu

    i need your help

    iam waiting

    #23231
    Veena
    Moderator

    In Appearance > Menus you can create a login menu using custom links and can enter the corresponding login page link in the url field .

    You can try out this plugin – https://wordpress.org/plugins/theme-my-login/ to get more features .

    Or

    You can just add the below code in your childtheme’s functions.php and see if it helps .

    
    add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2); function add_login_logout_link($items, $args) {         ob_start();         wp_loginout('index.php');         $loginoutlink = ob_get_contents();         ob_end_clean();         $items .= '<li>'. $loginoutlink .'</li>';     return $items; }
    
    #23240
    mr4top
    Member

    Hello

    I don’t want to redirct to another page to login i want to to make box to login in right sidbar under header menu

    like as facebook site or other sites which can login in same page

    how can make this ?

    #23306
    mr4top
    Member

    please , i need your help

    #23313
    Veena
    Moderator

    Pls go through this article –
    http://www.wprecipes.com/add-a-login-form-on-your-wordpress-theme

    You can try the code in file header.php .

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Invent Theme Support’ is closed to new topics and replies.