• Resolved mangelnz

    (@mangelnz)


    Hi,

    I’m having issues with the registration form. It shows a search bar that I cant dissable and also it show doiublle arrow in the dropdown. Can anyone help me solving that. I’m not a WP expert…Thank you!!

    Image below

    https://postimg.cc/cvxFjZTd

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • @mangelnz

    I think you have a conflict with your Theme or another Plugin.
    Try to do a conflict test and read this guide.

    https://docs.ultimatemember.com/article/96-how-to-do-a-plugin-theme-conflict-test

    Plugin Support yuriinalivaiko

    (@yuriinalivaiko)

    Hello @mangelnz

    Your theme styles influence dropdown fields. The second arrow and giant padding around the options search bar are added in this file:
    /wp-content/themes/anesta/skins/default/css/__plugins.css

    You have to edit this file or override conflicting styles.

    Use this CSS code snippet to hide the second arrow and fix padding around the options search bar:

    .um .select2-container.select2-container--default .select2-selection:after {
     display: none;
    }
    .um .select2-search,
    .um .select2-search--dropdown .select2-search__field {
     padding: 4px;
    }

    Use this CSS code snippet to hide the options search bar at all:

    .um .select2-search,
    .um .select2-search--dropdown .select2-search__field {
     display: none;
    }

    ?You can override the style by adding CSS code to the field “Additional CSS” on wp-admin > Appearance > Customize > Additional CSS.

    Regards

    Thread Starter mangelnz

    (@mangelnz)

    Thank you @yuriinalivaiko ! Problem solved, really appreciate your response.

    Best Regards!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘issue is the registration form’ is closed to new replies.