vForums Support Banner



 

Welcome Guest! Please Login or Register
vForums Support :: Programming & Coding :: Code Requests & Support :: Rank and group names as images - View Topic (Page 1 of 2)Page: 1 2
Topic Rating: *****
Printable View
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Rank and group names as images (16th Dec 09 at 3:23pm UTC)
Is there a code for this or can one be made?

Currently I have the image as a star and only the image is displayed in the mini-profile but on the members list I see both the name and the images, is there a code for the name of the ranks and groups to be images?

My forum is Xen Qarna, it is in my signature

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Rank and group names as images (17th Dec 09 at 1:50am UTC)
When setting the group name, you can use UBBC. Meaning that you can use the image tag in there:

[img]http://test.wserver.co.uk/image.png[/img] {Smile}
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Re: Rank and group names as images (17th Dec 09 at 2:21am UTC)
Not enough room in group name field, I use photobucket for my images

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Rank and group names as images (17th Dec 09 at 2:48am UTC)
You could try to rehost them with tinypic.com or use a censored word. I'm not sure if censored words will work or not, but it's worth a try. {Smile}
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Re: Rank and group names as images (17th Dec 09 at 2:54am UTC)
I will try censored words

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Rank and group names as images (17th Dec 09 at 3:07am UTC)
If not, then I guess I could write a code that'll do it, that or persuade Ross to make it longer! =P
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Re: Rank and group names as images (17th Dec 09 at 7:48am UTC)
I do prefer codes, a code would be easier to modify and organize (categorize with comments and spacing between lines)

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Rank and group names as images (17th Dec 09 at 8:31am UTC)
A coder would be a lot slower running than the censored words method
Ross
Administrator
*****

[Avatar]

Posts: 3,709
Status: Offline
Gender: Male
Age: 9 14
Joined:  

Additional Groups:
Support Team
***


Reputation: 45%  


pmwwwtwittergtalkvForum
Re: Rank and group names as images (17th Dec 09 at 9:36am UTC)
Hi,

I think the easiest way would be to continue doing it as you're doing it but to have a code modify the members list to remove the names from there?

<script type="text/javascript">
<!--

/* Remove Group / Rank Names from Members List */

if(location.href.match(/\/members(\/|$)/i)) {
td = get('td', TAG, get('members_list', ID));
for(t=0; t<td.length; t++) {
if(td[t].className == 'window2' && !td[t].nextSibling && td[t].firstChild) {
td[t].firstChild.innerHTML = td[t].firstChild.innerHTML.replace(/(>|^)([^<])+/gi, '$1');
td[t].firstChild.innerHTML = td[t].firstChild.innerHTML.replace(/(^|<br\s?\/?>)(<br\s?\/?>)+/gi, '$1');
}
}
}

//-->
</script>

Main Footer




Image
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Re: Rank and group names as images (18th Dec 09 at 3:23am UTC)
That works on computer but not on PSP

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: Rank and group names as images (18th Dec 09 at 5:10am UTC)
 
That works on computer but not on PSP


PSP's don't really render that well with these types of codes. a few of my sites look awkward on my PSP because it doesn't work that well. PSP's have their own browser, and it's not mainstream like Internet Explore, FireFox, Chrome, etc.

Seeing as how PSP's are Mobile's like Phones, it's really not gonna work well.
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Re: Rank and group names as images (18th Dec 09 at 1:21pm UTC)
What code for this would work on PSP? Half of the time will be on PSP including this forum

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: Rank and group names as images (18th Dec 09 at 9:31pm UTC)
What series of PSP do you have? and do you have javascript turned on?

My PSP forum, works quite well on my PSP as I only have HTML added in, and hardly any JS codes. I'm not sure if Ross is planing on a Mobile version of vF, but there will be allot of codes that will not work with the PSP, as allot of them are more for computers.
Aiken
Full Member
***

[Avatar]

Posts: 333
Status: Offline
Gender: Male
Location: In a very lonely place, the domain of despair
Age: 35
Joined:  
Reputation: 12%  


pmtwitterskypemsnyahooxfire
Re: Rank and group names as images (18th Dec 09 at 11:21pm UTC)
2001 series and JS is on, I have a code on it that works on PSP

vF forums:
Perfect World RP
BLEACH Universe - Under Construction / Testing Phase
Xen Qarna RP - Stage I
Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled
the Final Anime Hideout
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: Rank and group names as images (18th Dec 09 at 11:47pm UTC)
I have the 1000 series. and like i said some codes will work, and some wont. It depends on which one really. I'll have a look when I charge my PSP up, and add that code to my testing forum, to see if it works on mine.
 Printable View
Page: 1 2

All times are GMT+0 :: The current time is 3:51am
Page generated in 0.358 seconds
This Forum is Powered By vForums (v2.4)
Create a Forum for Free | Find Forums