• Resolved emoteek

    (@emoteek)


    Hello, I’ve setup a register form with a dropdown. And the dropdown is not working as it should as you can see in this screenshot : https://snipboard.io/SgGDIO.jpg

    Do you have any idea where the problem could come from? Here is the setup for the dropdown : https://snipboard.io/BMPeG6.jpg

    Also, another “problem” I have is with the required fields, there is no visible thing to say to the client that it is a required field at first sight, I had to add “*” myself on the label so the client can see it. Isn’t there a way to automatically do it?

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

Viewing 10 replies - 16 through 25 (of 25 total)
  • @emoteek

    You can try this plugin and remove the CSS and JS files from the “WooCommerce Memberships” plugin on the Registration page with this conflict.

    https://github.com/MissVeronica/um-conflict-remover

    Thread Starter emoteek

    (@emoteek)

    Hello I tried it but it doesn’t seem to solve anything, also if it can help you to find the source of the problem, I have problem with dropdown and Multi-select fields

    @emoteek

    Can you keep the “Conflict Remover” plugin active so I can look at your Registration page’s HTML.

    Thread Starter emoteek

    (@emoteek)

    Yes sure, I reactivated it

    Thread Starter emoteek

    (@emoteek)

    @missveronicatv

    Hello, I “solved” the problem doing this :

    add_action(‘wp_enqueue_scripts’, ‘disable_wc_memberships_scripts_on_registration_page’);
    function disable_wc_memberships_scripts_on_registration_page() {
    if (is_page(‘register’)) {
    wp_dequeue_script(‘wc-memberships-blocks-common’);
    }
    }

    Do you see anything bad about that code? ( it solves the problem but I don’t know if I can disable things like that )

    Thread Starter emoteek

    (@emoteek)

    After doing some test I could aslo see that I receive this information from the dropdown : account_type:?(empty) even when the field is completed. Did I do something wrong in the setup here : https://snipboard.io/1FLPI4.jpg ?

    @emoteek

    I “solved” the problem doing this

    If you do this for the Registration page only it’s OK.
    The “Conflict Remover” plugin is trying to do the same dequeue.

    Did I do something wrong in the setup here

    Yes and No, there are always security issues with changing User Roles in frontend dropdowns.

    You can try this plugin for solving the role update.

    https://github.com/MissVeronica/um-promote-users-role

    Thread Starter emoteek

    (@emoteek)

    @missveronicatv

    Yes and No, there are always security issues with changing User Roles in frontend dropdowns. -> I’m not trying to update the user’s role at that point, I just want the user to tell me what role he has in his company so that I can manually give him the right role after reviewing his account.

    @emoteek

    Use another dropdown where you can select a basic meta_key and give all Registrations the same Role, which you change when the user is being approved.

    Thread Starter emoteek

    (@emoteek)

    Okay, thank you. I was using the dropdown that was meant for assigning roles instead of a regular dropdown. The issue has been resolved, thank you ??

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘Dropdown showing in footer’ is closed to new replies.