Does anyone know How to show sign up/login page as pop up or lightbox?
Actually i do not want to loose my customer by clicking Register / Login abd redirecting to another page from product page. I want if a customer want to create a new account or login then he/she should able to sign up/ sign in in correct page (without being redirect ) as popup or lightbox.
{% unless settings.breadcrumb_styles == 'none' %}{% include 'breadcrumb' %}{% endunless %}
## {{'customer.register.title' | t }}
{{'customer.register.caption' | t }}
{% form 'create_customer' %}
{% if form.errors %}
{{ form.errors | default_errors }}
{% endif %}
{% endform %}
##### {{'customer.register.benefits_title' | t }}
- {{'customer.register.benefits_text_1' | t }}
- {{'customer.register.benefits_text_2' | t }}
- {{'customer.register.benefits_text_3' | t }}
## {{ 'customer.login.title' | t }}
{{ 'customer.login.welcome' | t }}
{% form 'customer_login' %}
{% if form.errors %}
{{ form.errors | default_errors }}
{% endif %}
{% if form.password_needed %}
{% endif %}
{{ 'customer.login.forgot_password' | t }}
{{ 'customer.login.cancel' | t }}
{% endform %}
## {{ 'customer.recover_password.title' | t }}
{{ 'customer.recover_password.subtext' | t }}
{% form 'recover_customer_password' %}
{% if form.posted_successfully? %}
{% assign reset_success = true %}
{% endif %}
{% if form.errors %}
{{ form.errors | default_errors }}
{% endif %}
{{ 'customer.recover_password.cancel' | t }}
{% endform %}
