• Hello again, another batch of question that just “came to play” since I am now using (and relying) your user management capabilities:

    a) Would it be possible to simply follow the “general setting: Anyone can register” option and not even show the “Don’t have an account? Signup Now ?” link? One option would be to just hide it with css, but unfortunately you did give those links no class attribute – a fix for that would be appreciated:)

    b) Would it be possible to have a “special” (text area) field allowing html code (maybe even an editor) in the profile section, that way the users could post something about themselves right in the profile section…

    c) On the same thought as the above: maybe an “address field” that changes format based upon country?

    d) will you at some point include validation for “common” fields (phone numbers, url’s, email, zip codes… you get the idea:)

    Cheers,

    Uwe

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter uwew

    (@uwew)

    Oops, another question: Is there a way to import a list of countries and/or states – it is rather tedious entering them by hand;)

    Cheers,

    Uwe

    Plugin Contributor Alessandro Tesoro

    (@alessandrotesoro)

    Hi @uwew

    1) I’ve added this to my to-do list, I’ll see if I can add it into the next update.

    2) At the moment there isn’t a plan to add an editor type of field. However if you need to support html tags, you can override the way specific fields are stored into the database by using the hooks provided by the plugin.

    3) This is on my to-do list, I haven’t had the time to implement it yet.

    4) Currently there isn’t a plan for such feature it may be implemented in the future if there are more request for it.

    5) While you can’t implement values for fields via a file or “copy-paste”. You can hook into the plugin and programmatically load values for fields. So if you have a bit of coding knowledge you could use lists found online such as https://gist.github.com/djaiss/2938259 and load the values through hooks.

    Thread Starter uwew

    (@uwew)

    Thank you for your response – I did look thru the list of hooks in the documentation, but I did not find a hook for loading “option” into a “select” field… Could I ask for a tiny bit more advise:)

    Thank you,

    Uwe

    Thread Starter uwew

    (@uwew)

    Hello again, I added following simple ‘users_can_register’ regarding my first question (“Hiding the registration link” if open registration is disabled…

    file: wp-user-manager/templates/action-links.php lines 31-37

    <?php  if (get_option('users_can_register')) : ?>
      <?php if( isset( $data->register_link ) && $data->register_link == 'yes' ) : ?>
        
    • <?php echo apply_filters( 'wpum_registration_link_label', sprintf( __( 'Don\'t have an account? Signup Now »', 'wp-user-manager' ), esc_url( get_permalink( wpum_get_core_page_id( 'register' ) ) ) ) ); ?>
    • <?php endif; ?> <?php endif; ?> </pre
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘A few more questions…’ is closed to new replies.