Topic-icon SClogin not working within IceMegaMenu

Active Subscriptions:

None
10 years 6 months ago #55824 by rakesh
When having the module SClogin loaded within the menubar (IceMegMenu). For some reason the button 'Login' doesn't press/work.
Filling in the username and pasword and then pressing enter on my keyboard does work. But the big button below password field is not responding.

Perhaps this has already come up before.

Hope to hear a quick fix. Got the latest SClogin module 442.

Thanks,

Rakesh
The topic has been locked.
Support Specialist
10 years 6 months ago #55828 by alzander
I honestly don't know what in your template is causing the conflict, but if I remove the "span12" from the classes of the button, it starts to work again. span12 is a standard Bootstrap value that makes the button go the full width and, when taking that off, it's much smaller, but works. You may want to bring that information to your template provider to see if they understand why the span12 is causing that button to be unclickable for some reason.

Sorry I don't have a definitive answer. This is not an issue we've ever seen before though.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 6 months ago #55897 by rakesh
I get the feeling there is a bug or conflict somewhere at joomlaLogin_vertical.php
<input id="sclogin-remember" type="hidden" name="remember" class="inputbox" <?php echo $helper->getRememberMeValue();?> alt="Remember Me" />
                    <?php }
                endif; ?>
with the Show Remember Me module setting.

The problem only occurs when the module setting is set to Show Remember Me Hide checked or unchecked.

There is either a .hidden css conflict or a php bug I suppose.

Would be good to look into.

For now I leave Show unchecked for the submit button to work.
The topic has been locked.
Support Specialist
10 years 6 months ago #55901 by alzander
To narrow things down, the best thing to do would be:
* Re-enable that setting
* Open the HTML on the page itself
* Find that block of code with the sclogin-remember and paste the code here
That way, we can see if something incorrect is happening (missing quote, wrong html, etc). If not, that will narrow it down a CSS or Javascript conflict somewhere.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 6 months ago #55940 by rakesh
This is the block
<li id="iceMenu_463" class="iceMenuLiLevel_1 mzr-drop parent  lastItem" data-hover="false">
				<a class="iceMenuTitle">
					<span class="icemega_title icemega_nosubtitle">Members</span>
				</a>
				<ul class="icesubMenu icemodules sub_level_1 ice_righttoleft" style="width:280px">
					<li class="lastItem firstItem">
						<div style="float:left;width:280px" class="iceCols">
							<ul>
								<li id="iceMenu_479" class="iceMenuLiLevel_2  lastItem firstItem">
<div class="icemega_cover_module" style="width:280px">
<div class="icemega_modulewrap " style="width:auto; ">

    <div class="sclogin sourcecoast" id="sclogin-145">
        
        <div class="row-fluid">
            
    <div class="sclogin-joomla-login vertical span12">
        <form action="/?Itemid=551" method="post" id="sclogin-form145">
            <fieldset class="input-block-level userdata">
                <div class="control-group" id="form-sclogin-username">
                    <div class="controls input-block-level">
                        <div class="input-append input-block-level">
                            <input name="username" tabindex="0" id="sclogin-username" class="input-block-level" alt="username" type="text" placeholder="Gebruikersnaam">
                                                    </div>
                    </div>
                </div>
                <div class="control-group" id="form-sclogin-password">
                    <div class="controls input-block-level">
                        <div class="input-append input-block-level">
                            <input name="password" tabindex="0" id="sclogin-passwd" class="input-block-level" alt="password" type="password" placeholder="Wachtwoord">
                                                    </div>
                    </div>
                </div>
                <div class="control-group" id="form-sclogin-submitcreate">
                    <button type="submit" name="Submit" class="btn btn-primary span12">Inloggen</button>
                                    </div>
                                        <input id="sclogin-remember" type="hidden" name="remember" class="inputbox" alt="Remember Me">
                    

                <input type="hidden" name="option" value="com_users"><input type="hidden" name="task" value="user.login"><input type="hidden" name="return" value="P0l0ZW1pZD01NTE="><input type="hidden" name="mod_id" value="145"><input type="hidden" name="841d9befdeeaf10429aa9a2fec442694" value="1"><ul><li class="firstItem"><a href="/username-reminder-request">Gebruikersnaam vergeten?</a></li><li class="lastItem"><a href="/password-reset">Wachtwoord vergeten?</a></li></ul>            </fieldset>
        </form>
    </div>
        </div>

                <div class="clearfix"></div>
    </div>

</div>
</div></li>
							</ul>
						</div>
					</li>
				</ul>
			</li>
The topic has been locked.
Support Specialist
10 years 6 months ago #55948 by alzander
There's nothing I can see in that block of code that seems incorrect. I was thinking that maybe a tag wasn't closed properly or there was a missing double-quote, but I don't see that.

All I can suggest to try from here is to test the standard Joomla login module to see how that behaves. That will help narrow things down, but not directly provide a solution.

Let us know any details you can and we'll help however we can. Again though, this may be something you want to contact your template developers about to see if they can help understand the conflict as well.

Thanks,
Alex
The topic has been locked.