The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Modifying the Memberlist Page

5 posters

Go down

In progress Modifying the Memberlist Page

Post by AnyColor August 24th 2018, 3:00 am

Technical Details


Forum version : #phpBB2
Position : Founder
Concerned browser(s) : Mozilla Firefox
Who the problem concerns : All members
When the problem appeared : Since forum was created
Forum link : pwgenesis.forumotion.com

Description of problem

If possible I would like the default view of the Members list (when first clicking to it) to be sorted by Username and ordered in Ascending.

I would also like the Website category of the members to be removed.

Lastly, under the sort feature, I would like to remove sort by User groups, if possible.

Thank you in advance to anyone who can help me out on any or all of these!
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by mpelmmc August 24th 2018, 3:31 am

Hello @AnyColor

Could you please allow guests to see this page?
http://pwgenesis.forumotion.com/memberlist

I think I have an idea about how to do it but I'd need to check this section out if you don't mind. However, if you don't want to open that page to guest you can send me by PM a test account.

Best regards.
mpelmmc
mpelmmc
Helper
Helper

Male Posts : 1092
Reputation : 170
Language : English and Spanish

https://help.forumotion.com/

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by Jadster August 24th 2018, 4:57 am

@mpelmmc, he changed it just recently as there was another thread that is now archived asking for help regarding the permissions for guests on this matter.

@AnyColor, I tried searching around Forumotion and I do not know if this is possible, I did find another thread linked below that explains a bit about this though their issue may be a bit different but I think it still applies.

Link to thread: https://help.forumotion.com/t122236-member-list-display

Hope this helps!

Cheers,
James
Jadster
Jadster
Helper
Helper

Male Posts : 690
Reputation : 74
Language : English
Location : Omaha, NE

https://ygoduelists.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by AnyColor August 24th 2018, 5:52 am

@mpelmmc I just changed the memberlist settings so guests can see. Hope that helps your idea in mind Smile

@jadster thanks for that link i couldn’t find anything on the topic when i searched. I’ll dig through the posts and links in it and see if I can have it work for me.
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by skouliki August 24th 2018, 11:20 am

I would also like the Website category of the members to be removed.

go to templates ...memberlist_body...find this
Code:

<th class="tc2">{L_JOINED}</th>
                     <th class="tc2">{L_VISITED}</th>
                     <th class="tc3">{L_POSTS}</th>
                     <th class="tc3">{L_PM}</th>
                                                        <th class="tc2">{L_WEBSITE}</th>

and delete this <th class="tc2">{L_WEBSITE}</th>
skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by mpelmmc August 24th 2018, 9:12 pm

Also find the following code in the same template @skouliki told you above and find this:

Code:
<tr>
            <td width="100%">{L_USER_SELECT}&nbsp;<input type="text" class="post" name="username" maxlength="25" size="20" value="{L_USER_SELECT_VALUE}" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            {L_SELECT_SORT_METHOD}&nbsp;{S_MODE_SELECT}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            {L_ORDER}&nbsp;{S_ORDER_SELECT}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            {S_HIDDEN_SID}
            <input class="liteoption" type="submit" name="submit" value="{L_SUBMIT}" /></td>
         </tr>

Then change it into:

Code:
<tr>
            <td width="100%">{L_USER_SELECT}&nbsp;<input type="text" class="post" name="username" maxlength="25" size="20" value="{L_USER_SELECT_VALUE}" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <select name="mode"><option value="username" selected="selected">Username</option><option value="lastvisit">Last visit</option><option value="joined">Join date</option><option value="interests">Time Zone</option><option value="posts">Posts</option><option value="website">Website</option><option value="groups">Usergroups</option></select>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <select name="order"><option value="ASCD" selected="selected">Ascending</option><option value="DESC">Descending</option></select>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            {S_HIDDEN_SID}
            <input class="liteoption" type="submit" name="submit" value="{L_SUBMIT}" /></td>
         </tr>

And let us know if it works thumleft

Best regards.
mpelmmc
mpelmmc
Helper
Helper

Male Posts : 1092
Reputation : 170
Language : English and Spanish

https://help.forumotion.com/

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by SLGray August 24th 2018, 11:24 pm

Do not forgot to save the changes and then publish the modified template.


memberlist - Modifying the Memberlist Page Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by AnyColor August 25th 2018, 1:44 am

@mpelmmc I replaced that in the template and it changes the default choices to Username and Ascending but I have to click OK to sort it to that screen. It still visibly shows Last Activity date as default when first clicking members tab. Thank you for getting me on the right track!

@skouliki thank you that did remove the website column from the Members page.
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by AnyColor August 26th 2018, 8:28 pm

Any possible way to tweak it so the default view is username and ascending ? So close lol
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by AnyColor August 29th 2018, 2:57 am

bump
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by AnyColor August 31st 2018, 3:28 am

bump Sad
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by AnyColor September 8th 2018, 12:36 am

bump
AnyColor
AnyColor
Forumember

Male Posts : 93
Reputation : 2
Language : English
Location : Las Vegas

https://pwgenesis.forumotion.com

Back to top Go down

In progress Re: Modifying the Memberlist Page

Post by skouliki September 9th 2018, 10:33 am

do you want this as result?
first one is the default
memberlist - Modifying the Memberlist Page Scree169
skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum