• When adding the inline form shortcode, the login/singup widget shows up on the very top of the page, instead of where I added the shortcode.
    I have many things (like images, text, etc) that I would like to display on the page before showing the login/sign up form.
    Is there any way to make the form show in the correct place?

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

    (@xootix)

    Hello @mairabay

    The form is placed exactly where you want to place.
    If it is showing on the top of the page, then you might be adding it incorrectly.
    Where are you adding the shortcode?

    Thread Starter mairabay

    (@mairabay)

    Hi,

    I am adding it after a bunch of other things in the page. When editing, my page looks something like:

    An image
    A Text
    An Image
    [inline form shortcode goes here]

    However, when I post the page, the form appears on the very top, before the first image.

    Any fix on this? same issue…

    Thread Starter mairabay

    (@mairabay)

    Nope, still waiting on the answer.

    Plugin Contributor xootixsupport

    (@xootixsupport)

    Please leave a message here & share your login credentials.
    https://xootix.com/support

    Thread Starter mairabay

    (@mairabay)

    I actually removed the inline form and changed my whole website to use the pop-up because I had to launch last week and you hadn’t replied yet.
    But I can still share with you the URL where I would like to add it. It is this one: https://ethicalfashion.agency/tefa/insiders/insiders-account/.
    I originally wanted to add the Inline form where it says “Please Log in to access your account.
    As you can see, there are images and blocks of text before the location where I wanted the form.
    Unfortunately I cannot give you login credentials as the website is now live.
    Can you try to reproduce this on a test website? Just add images and blocks, then try to add your inline form with the shortcode and see if the issue happens.

    i fixed the inline form shortcode issue that was pushing all page
    content below the shortcode output by adding an output buffer, lines
    203 and 205 on the xoo-el-functions.php file.

    here are lines 189 thru 209 with fix included at line 203 & 205:

    //Inline Form Shortcode
    if( !function_exists( ‘xoo_el_inline_form’ ) ){
    function xoo_el_inline_form_shortcode($user_atts){

    $atts = shortcode_atts( array(
    ‘active’ => ‘login’,
    ), $user_atts, ‘xoo_el_inline_form’);

    if( is_user_logged_in() ) return;

    $args = array(
    ‘form_class’ => ‘xoo-el-form-inline’,
    ‘form_active’ => $atts[‘active’]
    );
    line 203 —–> ob_start();
    xoo_get_template( ‘xoo-el-form.php’, XOO_EL_PATH.’/templates/’, $args );
    line 205 —–> return ob_get_clean();
    }
    add_shortcode( ‘xoo_el_inline_form’, ‘xoo_el_inline_form_shortcode’ );
    }

    Thread Starter mairabay

    (@mairabay)

    ok, looks good. Are you going to release this in a new version?

    Hi Mairabay,

    I looked at your customization login popup and it looks great. Can you provide any guidance on having the “Forgot Password” link appear on your login screen? Thank you!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Inline Form Location’ is closed to new replies.