Hi HivePress team,
We are using HivePress on estatezona.com. We’ve noticed that the phone number field has disappeared from the user registration/account creation form.
Please see the attached screenshots:
-
Screenshot 1: How it looks now (field is missing).
-
Screenshot 2: How it should look.
What should we do to restore the phone number field?
Thank you!
i used:
.reveal-number .real-number {
display: none;
}
And this code:
document.addEventListener(“DOMContentLoaded”, function () {
const numbers = document.querySelectorAll(“.reveal-number”);
numbers.forEach(function (block) {
const icon = block.querySelector(“.phone-icon”);
const number = block.querySelector(“.real-number”);
if (icon && number) {
icon.addEventListener("click", function () {
block.classList.add("show");
});
}
});
});

