I’m using the bellow script to get login dialogue box when the user click’s anywhere inside the homepage.
<?php
if (Mage::getSingleton('customer/session')->isLoggedIn())
{
echo '<body>';
} else {
echo '<body onClick="showSmartRegisterDialog(); return false;">';
}
?>
If i click anywhere outside the login form div, the login window is appearing again. How to solve this?
Did anyone came through this problem ?
Solution to solve this highly appreciate-able….
Clear the onclick after showing the dialog. 😉
edit:
Try changing this:
to this: