Member list without search options on top

Member list without search options on top

  • Hello everyone,

    I have a question concerning the memberlist.
    It was quit easy to get it to display. I made a link to:
    /user/Members.aspx?search=1&t=&st=all&su=1&se=1&s=All&sb=1&so=1
    This is actually a search query for all users to be displayed.
    Thus it returns the search form with all the users underneath it.
    However I would like to create a link to a member list without the search functionality displayed above it.
    Is this possible? I can allways copy-paste the results into an article or something alike.

    Thanks in advance and have a great day!
     

  • Hi yoenuts,

    If you don't need the ability for users to perform a search against all members, you can turn it off! Smile

    Just go to Control Panel > Administration > Membership > Member List Settings (/ControlPanel/Membership/Options/PostingOptions.aspx) and set the "Enable Advanced Member Searching" to "No" and click "Save".

    Hope that helps...

    One is glad to be of service...

  • How did you get this link to work? When I add the following to my SiteUrl

    <link name="members" navigateUrl="/user/Members.aspx?search=1&t=&st=all&su=1&se=1&s=All&sb=1&so=1" roles="Registered Users" />

    I get an error

    Exception has been thrown by the target of an invocation.

    '=' is an unexpected token. The expected token is ';'. Line 65, position 66.

    When I add

    <link name="members" resourceUrl="user_list" resourceName="memberslist" roles="Registered Users" />

    The search form is diplayed but with no members? I want to turn off the search and just display the members. I'd also like to know if it is possible to add a "Phone Number" field to the member list.  Any help would be appreciated.

  • Hi Got it.

    the "&" needs to be replaced with the ^ symbol.

    <link name="members" navigateUrl="/user/Members.aspx?search=1^t=^st=all^su=1^se=1^s=All^sb=1^so=1" text="Members" roles="Registered Users" />

    Still looking to add a phone number field to the memberlist.

    Thanks

  • Thanks this worked great!

    I now have the list without the search above it.

    The link I use to generate it is: http://myInternalServer/cs/user/Members.aspx?search=1&t=&st=all&su=1&se=1&s=All&sb=1&so=1 

  • Couldn't get that working myself. Looking to display a member directory with a list of users directly from the main menu.

    Replacing the &s with ^s results in the search page and no members being displayed.