Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | Need help with code on mini-profile template (7th Dec 09 at 7:02pm UTC) Resolved - A code for custom profile field | | The only thing I see is what is in the div by default
 Code: - <div id="DyouPost">{custom_value_2} Dyou</div>
- <script>
-
- var Dyou; DyouNum, DyouBox; DyouBox1K; DyouPost;
-
- Dyou = {custom_value_2};
-
- DyouNum = (Dyou)/10;
-
- DyouPost = '<div style="text: #000000;">';
-
- DyouBox1K = new Array()
-
- var n = -1;
-
- if(DyouNum > 1000)
- {
- DyouPost = '<div style="height: 8px; width: 100px; background-color: #C0C000; float: left; margin: 1px;">10000+ Dyou</div>';
- } else {
-
- if(DyouNum >= 100)
- {
- while(DyouNum >= 100)
- {
-
- DyouBox1K[n++] = '<div style="height: 8px; width: 8px; background-color: #FFFF00; float: left; margin: 1px;">1K</div>';
- DyouNum -= 100;
-
- }
- }
-
- DyouBox = '<div style="height: 8px; width: ' + DyouNum + 'px; background-color: #FFFF00; float: left; margin: 1px;">' + DyouNum + ' Dyou</div>';
-
- if(DyouBox1K.length > 0)
- {
- for(i = 0; i <= DyouBox1k.length; i++)
- {
-
- DyouPost += DyouBox1K[i];
-
- }
-
- DyouPost += "<br>";
-
- }
-
- DyouPost += DyouBox;
-
- }
-
- DyouPost += "</div>
-
- document.getElementById("DyouPost") = DyouPost;
-
- </script>
-
| |
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 |
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄4 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | Re: Need help with code on mini-profile template (7th Dec 09 at 10:46pm UTC) | | Hi,
Can you post the link to your forum so I can check how that custom field is setup? You can PM it if you prefer | |
|
|
Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | |
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄4 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | Re: Need help with code on mini-profile template (8th Dec 09 at 6:16pm UTC) | | Hi,
There were a couple of little errors in the javascript which were stopping it from working. Things like:
DyouBox1K = new Array();
DyouPost += "</div>"; document.getElementById("DyouPost").innerHTML = DyouPost;
I have fixed them on your forum for you | |
|
|
Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | Re: Need help with code on mini-profile template (11th Dec 09 at 5:22pm UTC) | | I see there is a problem with the code, in a thread only the profile on the top seems to be using the code
I written up a alternate code for this using the headers and footers, I just don't know how to use it in the template so that all profiles in a thread will use it
Here is the code for Global Header:
 Code: - <script>
-
- function Dyou(dyou){
-
- var Dyou; DyouMil; DyouPost;
-
- Dyou = dyou
-
- if(DyouNum > 1000000){
-
- while(DyouNum > 1000000){
- ++DyouMil
- DyouNum -= 1000000;
-
- DyouPost = '<div style="height: 20px; width: 30px; color: #000000; background-color: #C0C000; float: right; margin: 1px;">' + DyouMil + ' Mil</div>';
- DyouPost += '<div style="height: 20px; width: 70px; color: #000000; background-color: #FFFF00; float: right; margin: 1px;">' + Dyou + ' Dyou</div>';
-
- } else {
-
- DyouPost = '<div style="height: 20px; width: 100px; color: #000000; background-color: #FFFF00; float: right; margin: 1px;">' + Dyou + ' Dyou</div>';
-
- }
-
- return DyouPost;
-
- }
-
- </script>
This one might work better | |
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 |
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄4 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | Re: Need help with code on mini-profile template (11th Dec 09 at 10:41pm UTC) | | Hi,
I've updated your mini-profile template so it writes out the result of that Dyou function (although I had to fix a few errors in it). The most up-to-date Dyou function is now in your Global Header. I was unsure how you were hoping it to display but expect you can tweak it as needed now it is setup | |
|
|
Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | |
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄4 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | Re: Need help with code on mini-profile template (13th Dec 09 at 12:59am UTC) | | Hi,
When a numeric custom field is greater than 1000 it adds commas (eg. 1,850,000). These were confusing the script. I've fixed that now | |
|
|
Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | |
Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | |