You may also like

2.x, 3.x
Simple Checkout and Registration
699 грн.499 грн.
59
Simple is the best module for creating a convenient checkout and registration form.Thanks to it, you can customize the order or re..
2.x, 3.x
Bulk price management
699 грн.499 грн.
87
Module for mass management of prices, discounts, margins, promotions for products depending on the category, manufacturer, custome..
2.x, 3.x
Telegram notifications
699 грн.499 грн.
19
Telegram notifications – the OpenCart module has been created and allows you to receive notifications about orders, registered cus..

Authorization by phone or email for OpenCart

Authorization by phone or email for OpenCart
BonusBonus +50 грн. to your account
Special price:499 грн.
Old price:699 грн.
You save:200 грн.

The "Authorization by Phone or Email" module is a valuable extension for OpenCart that significantly improves the user authorization process. Here are the key characteristics and advantages of this module:

Main features:

  1. Advanced authorization options: Adding functionality for user authorization not only by Email, but also by phone number.
  2. Flexible user settings: Ability for users to specify and save their phone number in their account settings.

Advantages:

  1. Greater convenience for users: Many customers may forget their Email, but the phone number is usually easier to remember and remains easily accessible in the user's memory.
  2. Increased security level: The ability to authorize by phone number provides an additional layer of security, since it requires physical access to the device with the associated number.
  3. Reducing Barriers to Entry: Improving the user experience by simplifying the sign-in process and lowering barriers for those who may have difficulty remembering Email.
  4. Higher account recovery rate: In case of loss of account access, users can use their phone number for more convenient and faster recovery.
  5. Adaptation to modern preferences: The module corresponds to modern trends in the use of phones and provides users with a choice in the authorization method.

Important Notes:

  1. Correct implementation: The module must be correctly implemented and integrated into the OpenCart system to ensure reliable and secure authorization.
  2. Satisfying Security Requirements: It is important that the module meets security standards to avoid vulnerabilities and ensure that users' personal data is protected.
The "Authorization by Phone or Email" module is a valuable tool for optimizing the authorization process in OpenCart. The combination of user friendliness, an added layer of security and modernization makes it an excellent choice for stores that value their customers and strive to provide a comfortable and secure user experience.
Characteristics
OpenCart2.3, 3.0
XML modificationYes
LocalizationEnglish, Ukrainian, Russian

Authorization by phone or email for OpenCart
Authorization by phone or email for OpenCart

Leave your review about this product

Bonus Get bonus +50 грн. for your review Bonus program
Дмитрий, 07.10.2024 14:29
Как происходит восстановление пользователя, если он не вводил почту?
Administrator's message:

Этот модификатор работает только странице авторизации и стандартной страницы оформления заказа. Дает возможность войти на сайт не только через почту, но и указав мобильный номер телефона. Перед такой авторизацией предварительно придется зарегистрироваться с указанием email или оформить заказ с автоматической регистрацией.

Віталій, 12.12.2024 15:52
Модуль працює чудово.
Чи є можливість зробити маску для введення номера телефона?
Administrator's message:

Щоб реалізувати маску введення телефону та перевірку email, можна використовувати бібліотеку https://github.com/RobinHerbots/Inputmask

Приблизно так буде виглядати JS. Якщо не збираєтеся взагалі використовувати email, то просто використовуєте стандартний код бібліотеки.

<script src="catalog/view/javascript/inputmask.min.js"></script>
<script>
 document.addEventListener('DOMContentLoaded', function () {
 var contactInput = document.getElementById('input-email');

 // Застосовуємо маску під час введення телефону
 contactInput.addEventListener('input', function () {
 if (/^\+38/.test(contactInput.value)) { // Якщо користувач починає вводити номер
 Inputmask({
 mask: "+38 (099) 999-99-99",
 showMaskOnHover: false
 }).mask(contactInput);
 }
 });

 // Перевіряємо валідність після введення
 contactInput.addEventListener('blur', function () {
 var value = contactInput.value.trim();
 var phonePattern = /^\+38\s\(\d{3}\)\s\d{3}-\d{2}-\d{2}$/; // Формат телефону
 var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/; // Формат email

 if (phonePattern.test(value)) {
 console.log('Це номер телефона.');
 } else if (emailPattern.test(value)) {
 console.log('Це email.');
 } else {
 alert('Введіть правильний номер телефону або email');
 contactInput.focus();
 }
 });
 });
</script>
Оладко, 17.01.2025 17:34
Подскажите а модуль работает с модулем симпл
Administrator's message:

К сожалению, с simple несовместимо..

Олег, 14.02.2025 19:43
Подскажите пожалуйста, а с Unishop Работает на ocstore 2.3?
Administrator's message:

Да, на стандартной странице оформления.

Віталій, 23.02.2025 22:51
Питання. На сайті є 2 типи користувачів і іноді один користувач може зареєструвати 2 облікові записи під одним номером. В модулі є якась можливість розділяти типи користувачів перед тим як вводити номер телефону?
Якщо ні то чи можливо замовити платну доробку такого типу
Дякую
Administrator's message:

Функціонал не передбачає автоматичного поділу користувачів перед введенням номера. Однак ви можете замовити індивідуальне доопрацювання. Щоб дізнатися деталі, зв'яжіться з технічною підтримкою.

Vadym, 13.04.2025 13:09
Думаю варто додати в опис і виділити жирним, що із Simple даний модуль не сумісний. Все ж Simple напевно самий популярний модуль спрощення авторизації/реєстрації/оформлення замовлення.
Administrator's message:

У сімпл є власний функціонал для цього. Нічого додатково встановлювати непотрібно.

Роман, 11.05.2025 21:03
Чудовий модуль, працює відмінно, з Сімпл проблем ніяких не було. Єдиний момент - "заставити" клієнта ввести номер телефону саме в тому форматі, який зберігається в вашій базі, тобто наприклад так +38(0ХХ)ХХХ-ХХ-ХХ, а не так 0ХХХХХХХХХ ну чи навпаки відповідно). А так все чудово.
Administrator's message:

У simple для поля телефон зробіть маску і всі існуючі номери телефонів в даних покупців приведіть до формату маски. Це все робиться елементарно через базу даних.

Write a review

Note: HTML is not translated!
AI Assistant

Recently viewed

2.3, 3.x
Authorization by phone or email
699 грн.499 грн.
7

Featured

Popup on login/logout
699 грн.499 грн.
1
Cart lifetime
699 грн.499 грн.
5
Email Verification
699 грн.499 грн.