• Resolved nektariostsaousis

    (@nektariostsaousis)


    Hello. Is there a way the sign up tab to be the default chosen tab when someone loads first the page? Now the default chosen tab is the Login tab. Also is there a way to change the sequence of the tabs so the sign up to be first and the login to be second? Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author xootix

    (@xootix)

    Hello,

    Yes, use this shortcode for inline form
    [xoo_el_inline_form tabs=”login,register” active=”register”]

    To change the sequence, simply add this CSS under appearance -> customize -> additional CSS

    ul.xoo-el-tabs {
        flex-direction: row-reverse;
    }
    Thread Starter nektariostsaousis

    (@nektariostsaousis)

    I use a plugin called “Force Authentification Before Checkout for WooCommerce” so my login page appears before checkout. So there I want to change to be the sign up tab the default chosen tab. I dont think I can add a shortcode there or an inline form. It just displays the login form of my login page with these settings. So is there another way to have activated the sign up first maybe globally? Or can I put this shortcode there somehow?

    By the way your plugin Login/Signup Popup ( Inline Form + Woocommerce ) is great. I have bought also the security addon.

    Plugin Author xootix

    (@xootix)

    I am glad you like the plugin.
    Please try this snippet in your functions.php

    add_filter( 'xoo_el_myaccount_shortcode', function(){
    	return '[xoo_el_inline_form active="register"]';
    } );
    Thread Starter nektariostsaousis

    (@nektariostsaousis)

    That worked! Thank you so much for the support.

    Plugin Author xootix

    (@xootix)

    You’re Welcome.
    Would really appreciate if you rate the plugin here

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘“Sign up” to be the default chosen tab’ is closed to new replies.