Phone number field missing from registration form

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");
  });
}
});
});

Hi,

Please disable all customizations to see which one is affecting the field. Also, please ensure you haven’t accidentally deleted this attribute in Users > Attributes.

Hope this helps.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.