Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author anmari

    (@anmari)

    Not sure what you mean by display like this ? To display urls configure a list and add a column number against the user URL field.

    The filtering drop downs need the ‘plus’ package or you can write own HTML.

    Thread Starter metate

    (@metate)

    Hi Anmari,
    Thank you for the reply!
    Sorry about not being specific enough. When I said “display like this”, I meant if a user enters their website as “www.google.com”, making “www.google.com” show as a hyperlink on the list. We have a field for a website url and tried setting it to “user url” and this creates a link to the user’s profile, not to the website url. So that’s why I was asking. We wound up putting html in “before” and “after” – text is “visit website” instead of the actual url – to make it a hyperlink in the list. I’d prefer the hyperlink display “www.google.com” instead of “visit website”. That’s why I asked. ??

    Plugin Author anmari

    (@anmari)

    Ahh – it’s a custom field. okay I see… so actually a linktype option that just assumes the value is a link and href it with itself and maybe the column name as the hover title would do the trick. I’ll probably add that next update.

    If in a hurry, you can use the ability to do own formatting for any field
    https://wpusersplugin.com/documentation/formatting-and-pluggable-functions/

    something like….(untested and assuming website_url is the field name)

    function ausers_format_website_url ($v, $u) {
        if (!empty($v) ) return (make_clickable($v));
    }
    Thread Starter metate

    (@metate)

    cool! I will definitely look forward to the next release!
    Thanks for the response and understanding what I was trying to explain!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: amr users] Questions about demo site’ is closed to new replies.