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.

Is there a way to change something on the profiles

+3
Darren1
Stephen-
sign da tits
7 posters

Go down

Is there a way to change something on the profiles Empty Is there a way to change something on the profiles

Post by sign da tits May 8th 2011, 12:18 am

When on the profiles it says "Visitor Messages" is there a way to change it to "comments" or a future suggestion to what it could be?
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 8th 2011, 11:22 pm

Anyone?
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Stephen- May 9th 2011, 1:06 am

i think its not possible. but let's wait for other reply Smile
Stephen-
Stephen-
Hyperactive

Male Posts : 2542
Reputation : 326
Language :

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 9th 2011, 1:55 am

Chan wrote:i think its not possible. but let's wait for other reply Smile
Lol, I just dislike it named "Visitor Messages" I'd prefer it as 'Comments'
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Stephen- May 9th 2011, 1:58 am

do you mean on the members profile? if on the members profile well sure you can change it. Smile
Stephen-
Stephen-
Hyperactive

Male Posts : 2542
Reputation : 326
Language :

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 9th 2011, 2:33 am

Well everyone's profile.
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Darren1 May 9th 2011, 3:10 am

Hi,

I'm sorry but this is not possible, even with the assistance of the templates, and this is only because the visitor comments option is not provided within the current set of templates Wink
Darren1
Darren1
Helper
Helper

Male Posts : 11853
Reputation : 566
Language : English

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 9th 2011, 3:37 am

Darren1 wrote:Hi,

I'm sorry but this is not possible, even with the assistance of the templates, and this is only because the visitor comments option is not provided within the current set of templates Wink
omy, could it be possible soon?
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Darren1 May 9th 2011, 7:40 am

sign da tits wrote:
Darren1 wrote:Hi,

I'm sorry but this is not possible, even with the assistance of the templates, and this is only because the visitor comments option is not provided within the current set of templates Wink
omy, could it be possible soon?

Not that I'm aware of; your suggestion is the best way to get it as an option however Wink
Darren1
Darren1
Helper
Helper

Male Posts : 11853
Reputation : 566
Language : English

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Guest May 12th 2011, 11:06 pm

sorry you cant change the visitor messages thing,but you can deactivate that part.
ACP>users & groups>users>profiles>general options>uncheck vistor message>save it

Every one has comment section already in their profile.

and visitor messages are like comments and the actual comments thing in profiles in like the owner of the profile adding a status
avatar
Guest
Guest


Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by *Mare-SBK™* May 13th 2011, 3:29 pm

Yes, it's possible!
With special javascript you can change it.
*Mare-SBK™*
*Mare-SBK™*
Forumember

Male Posts : 181
Reputation : 16
Language : Serbian, English, German

http://design4u.forumsr.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Gangstar15 May 13th 2011, 3:45 pm

Let's try Very Happy
Put this in your announcements or in the templates if you have them.
Code:
<script>
jQuery(function(){ jQuery("#tabs li a span:contains('Visitor messages')").each(function(){
        jQuery(this).text(jQuery(this).text().replace(/Visitor messages/, "Comments"));
});
 jQuery("#cp-main h1:contains('Visitor messages')").each(function(){
        jQuery(this).text(jQuery(this).text().replace(/Visitor messages/, "Comments"));
});
});</script>
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Saxaca May 13th 2011, 5:22 pm

Could've be done much simpler..
Code:
$(function() {
  $('#tabs li a span:contains('Visitor messages')')[0].innerHTML='Messages';
});
Saxaca
Saxaca
Forumember

Male Posts : 539
Reputation : 26
Language : Markup.

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Gangstar15 May 13th 2011, 5:26 pm

I know that someone will come with another code when i post mine Razz
But then you forget the second part Very Happy
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 13th 2011, 10:21 pm

Saxaca wrote:Could've be done much simpler..
Code:
$(function() {
  $('#tabs li a span:contains('Visitor messages')')[0].innerHTML='Messages';
});
ILY Saxaca<3 where do I put it, though? I've tried everywhere, doesn't seem to work. Sad
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Gangstar15 May 13th 2011, 10:59 pm

Try change the dollar sign ($) to jQuery (:
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 13th 2011, 11:20 pm

Gangstar15 wrote:Try change the dollar sign ($) to jQuery (:
Doesn't work, but yours does it's slow for some reason on my forum, where would be the best place to put it?
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Mike May 13th 2011, 11:21 pm

I dont know if it will speed it up, but maybe add the tag instead of <script> at top, put <script type="text/javascript">

Im pretty sure it helps with calling it before anything else.
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 13th 2011, 11:44 pm

Drogba921 wrote:I dont know if it will speed it up, but maybe add the tag instead of <script> at top, put <script type="text/javascript">

Im pretty sure it helps with calling it before anything else.
Noticeably faster Wink but doesn't seem to load straight away, it does on other sites, though ;c
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Mike May 13th 2011, 11:57 pm

Where did you put it with code? At the top or at the bottom.. if there is any other code on the part you are placing it, try putting it at the top
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 14th 2011, 12:16 am

Drogba921 wrote:Where did you put it with code? At the top or at the bottom.. if there is any other code on the part you are placing it, try putting it at the top
bottom on the footer
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by Mike May 14th 2011, 12:16 am

Try putting it at the top, if nothing imrpoves put it back where it was. A page will load in order of the code, so if this is at the bottom it will load last.
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

Is there a way to change something on the profiles Empty Re: Is there a way to change something on the profiles

Post by sign da tits May 14th 2011, 12:47 am

Drogba921 wrote:Try putting it at the top, if nothing imrpoves put it back where it was. A page will load in order of the code, so if this is at the bottom it will load last.
same, lol
sign da tits
sign da tits
Forumember

Male Posts : 236
Reputation : 30
Language : British English, AutoIt
Location : England!

http://www.devforumz.com/

Back to top Go down

Back to top

- Similar topics

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