Hi, Not sure this is the cleanest way to achieve this, but you can edit the file: MAGENTO_DIR/app/design/frontend/base/default/layout/oneall-sociallogin.xml and replace the lines: <block before="customer_form_login" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login">
<block before="customer_form_register" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login"> with <block after="customer_form_login" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login">
<block after="customer_form_register" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login"> Basically, replace the before with after.
Answers
Not sure this is the cleanest way to achieve this, but you can edit the file:
MAGENTO_DIR/app/design/frontend/base/default/layout/oneall-sociallogin.xml
and replace the lines:
<block before="customer_form_login" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login"> <block before="customer_form_register" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login">
with
<block after="customer_form_login" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login"> <block after="customer_form_register" type="oneall_sociallogin/login" name="oneall.sociallogin.login.login">
Basically, replace the before with after.
Hope it helps.