News:

Create A Forum Installed

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Fate

Pages: [1] 2 3
1
Style Support / Re: [Stylesheet] Dark Modern
« on: August 19, 2010, 01:12:37 pm »
Very nice. ;)

2
Create a Forum Codes and Support / Re: [Req] I may have missed this..
« on: August 15, 2010, 01:24:04 am »
You're welcome. ;)

3
Create a Forum Codes and Support / Re: [Req] I may have missed this..
« on: August 14, 2010, 01:47:54 pm »
Well, is there a way I can set up a custom profile, so to speak; where I'm able to create a new rank like.. 'Donator' or maybe even 'Elite' well, you get the picture.. just so i can inline it? or should i just merge the images together with a slight gap?


You can add pictures to a Custom Profile Field by using an image code, yes. ;)

Admin > Features and Options > Custom Profile Fields. Make your Profile Field there. (make sure users can see it and only admins can edit)


Then go to someone's Forum Profile, find the field, and add this there to add the image:
Code: [Select]
[IMG]IMAGE_URL_HERE[/img]
You'll have to do this for each person you want to add the rank to.

4
Create a Forum Codes and Support / Re: [Req] I may have missed this..
« on: August 14, 2010, 02:00:55 am »
This is the code for using your own rank images:

Code: [Select]
<script type='text/javascript'>
/* Image Changes on Page
SMF For Free 2009 - WWX */
function swap_img(){
var img_b = new Array();
img_b[img_b.length++] = [ "ORIGINAL_IMAGE_URL" , "NEW_IMAGE_URL" ]

var a_i = document.getElementsByTagName('IMG');
for(i=a_i.length-1;i>=0;i--) for(j=0;j<img_b.length;j++) if(a_i[i].src == img_b[j][0]) a_i[i].src = img_b[j][1];
}
swap_img();
</script>


If you want to replace several images, simply add more of this line under the first:

img_b[img_b.length++] = [ "ORIGINAL_IMAGE_URL" , "NEW_IMAGE_URL" ]



Here is an example with the image you want changed:


Code: [Select]
<script type='text/javascript'>
 /* Image Changes on Page
 SMF For Free 2009 - WWX */
 function swap_img(){
 var img_b = new Array();
 img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/dl_ranks2/rank_0.gif" , "http://i36.tinypic.com/af9d02.jpg" ]
 
 var a_i = document.getElementsByTagName('IMG');
 for(i=a_i.length-1;i>=0;i--) for(j=0;j<img_b.length;j++) if(a_i[i].src == img_b[j][0]) a_i[i].src = img_b[j][1];
 }
 swap_img();
 </script>

5
Style Support / Re: School Bus Background Request...
« on: August 10, 2010, 06:48:49 pm »
You're welcome.  ;)

6
Guides and Tutorials / Re: [GUIDE]Site Security/Rebuilding (Quick Guide)
« on: August 09, 2010, 04:22:34 pm »
If you have good security, there wouldn't be any "hackers"....?

And really, hackers don't exist on these forums. Only people that you've made admin can takeover the forum.

Trust me, there are hackers everywhere - constantly trying to gain access to bits of information that catch their attention.

7
General Chat / Re: Which is a Better Browser?
« on: August 08, 2010, 05:54:38 pm »
Google Chrome is known for being the fastest browser; although- it isn't the most secure browser.

Overall I'd go with Firefox due it it's security, reliability, customization, and decent speed.

8
Bugs / Re: Werid Bug..
« on: August 08, 2010, 02:06:53 am »
Strange, took me directly to it. Both- with two backslashes and with one backslash.

9
Bugs / Re: Werid Bug..
« on: August 07, 2010, 02:17:38 pm »
You still have 2 backslashes.

Take one of the links and click on it... it doesn't show an image.

http://images.smfboards.com/ranks//staradmin.gif

If it doesn't show an image there, it won't work in the code.

Actually the image works perfectly fine in Firefox regardless - so it will "work" in the code.


If the images don't appear in other browsers however, then several of your members may not be able to see the images - so it might be a good idea to take Seldom's advice. ;)

11
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 06, 2010, 06:06:08 pm »
I tested the following code on my forums and it worked like a charm ;)

Code: [Select]
<script type="text/javascript" src="http://smcodes.smfforfree3.com/jquery.js"></script>
<script type="text/javascript">
function GroupImage(Group, Image){
   //Created by Agent Moose
   var PostGroup = document.getElementsByTagName("li");
   for(x=0;x<PostGroup.length;x++){
      if(PostGroup[x].className === "membergroup" && PostGroup[x].innerHTML.toLowerCase() === Group.toLowerCase()){
         $(PostGroup[x]).parent().prev().find("a:last").prepend("<img src='" + Image + "' />");
      };
      if(PostGroup[x].className !== "membergroup" && PostGroup[x].className === "postgroup" && PostGroup[x].innerHTML.toLowerCase() === Group.toLowerCase()){
         $(PostGroup[x]).parent().prev().find("a:last").prepend("<img src='" + Image + "' />");
      };
   };
};
GroupImage("Owner", "http://i766.photobucket.com/albums/xx305/Lion2126/OWNER1.gif");
GroupImage("In-Game Admin", "http://i734.photobucket.com/albums/ww344/Iomsscape/Mega%20Forum%20Images/admincrown-1.jpg");
GroupImage("Forum Admin", "http://i734.photobucket.com/albums/ww344/Iomsscape/Mega%20Forum%20Images/admincrown-1.jpg");
GroupImage("In-Game Mod", "http://i8.photobucket.com/albums/a38/StSquiggy/Runescape/ModCrown.png");
GroupImage("Forum Mod", "http://i756.photobucket.com/albums/xx204/shad0w_bucket/forumsstaffcrown.jpg");
</script>

On your forum, I only see the image for Kane - since his membergroup is "Owner".
Make sure the "GROUP" MATCHES the membergroup name (Admin>Members>Membergroups).

12
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 06, 2010, 05:43:33 pm »
Make sure "Hide post group titles for grouped members" is set to on like Agent Moose mentioned.

Post the code you're using please. :)

13
Style Support / Re: School Bus Background Request...
« on: August 06, 2010, 05:16:32 pm »
You should probably do that...

This is why there is a Style Support Forum, so members can ask for help. :)


Actually, what about a Stop Sign when Activated says "New Post" and when Not Activated, says "No New Post"

I'll see what I can do. ;)

14
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 06, 2010, 04:57:22 pm »
No, simply replace "IMAGE" with the URL of the image you want to use.

15
Bugs / Re: Werid Bug..
« on: August 06, 2010, 03:39:38 pm »
That seems to be a code for SMF For Free Forums.

You don't need to add a new code for each image, simply do this:

Code: [Select]
<script type='text/javascript'>
/* Image Changes on Page
SMF For Free 2009 - WWX */
function swap_img(){
var img_b = new Array();
img_b[img_b.length++] = [ "ORIGINAL_URL_HERE" , "YOUR_REPLACEMENT_IMAGE_URL" ]

var a_i = document.getElementsByTagName('IMG');
for(i=a_i.length-1;i>=0;i--) for(j=0;j<img_b.length;j++) if(a_i[i].src == img_b[j][0]) a_i[i].src = img_b[j][1];
}
swap_img();
</script>

Replace ORIGINAL_URL_HERE with the url of the original image. (read what Seldom Fail said below)
Replace YOUR_REPLACEMENT_IMAGE_URL with the url of the image you want. (which you did correctly)

Instead of adding a new code each time, simply add more of this line under the first:
Code: [Select]
img_b[img_b.length++] = [ "ORIGINAL_URL_HERE" , "YOUR_REPLACEMENT_IMAGE_URL" ]

Pages: [1] 2 3