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.

remove avatar 'tab' from profile

2 posters

Go down

In progress remove avatar 'tab' from profile

Post by filbert1993 April 14th 2014, 7:35 am

Hi is there a way to remove the avatar 'tab' from being displayed in the profile? I'm using phpbb3. Thanks
avatar
filbert1993
New Member

Posts : 16
Reputation : 3
Language : english

Back to top Go down

In progress Re: remove avatar 'tab' from profile

Post by Ange Tuteur April 14th 2014, 12:44 pm

Hello filbert1993,

You can hide the link with this CSS :
Administration panel > display > colors > CSS stylesheet
Code:
a[href$="page_profil=avatars"] { display:none; }

However, members can still access this page by typing its URL. If you want to prevent access further you can redirect users :

Administration panel > modules > javascript codes management

Enable Javascript code management : Yes, and save.

Create a new script :

Title : What you wish
Placement : In all the pages
Paste the code below and save :
Code:
if (location.pathname == '/profile' && location.search == '?mode=editprofile&page_profil=avatars') {
    location.pathname = '/profile';
    location.search = '?mode=editprofile';
}
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Back to top

- Similar topics

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