Recent Posts

Pages: 1 2 [3] 4 5 6
21
General Discussion / Re: How'd You Find CF Coding?
« Last post by Zerker on August 10, 2010, 09:01:17 pm »
Nope, far from it. It's Tom.
22
General Discussion / Re: How'd You Find CF Coding?
« Last post by Nick on August 10, 2010, 08:22:49 pm »
I mean your real life name. Is your real life name Yader?
23
General Discussion / Re: How'd You Find CF Coding?
« Last post by Zerker on August 10, 2010, 08:19:10 pm »
Nope, I'm not registered to the website. I may do it now. My user will be the same as this one on here.
24
General Discussion / Re: How'd You Find CF Coding?
« Last post by Nick on August 10, 2010, 08:16:08 pm »
I'm the head forum admin on RuckaScape. Is your name by chance Yader?
25
General Discussion / Re: How'd You Find CF Coding?
« Last post by Zerker on August 10, 2010, 10:09:10 am »
I found CF coding by a website called RuckaScape.
26
Guides and Tutorials / [GUIDE] How to Make Certain Members Colored on the Online List
« Last post by Nick on August 06, 2010, 02:20:39 pm »
This guide is for changing a single member's color, not everyone's!!


1) Admin-> Membergroups-> Create

2) Name it (reccomended that it's named the color of their forum color)

3) Choose a color from here or any other color code site.

4) Make sure it is a non-post based group.

5) Set permissions to match regular members

6) Profile-> Account settings-> Set primary membergroup to the name of the group.


That should work... If you have any questions please ask me.
27
Create A Forum Codes / [CODE] Membergroup Image-- Agent Moose
« Last post by Nick on August 05, 2010, 11:06:44 pm »
100% of the credit for making this code goes to Agent Moose

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("GROUP", "IMAGE");
</script>

GROUP = The Group for which the selected image will show next to their names in posts.
IMAGE = the Image for the group you have selected.

To Add more images for certain membergroups, add more of these lines:

Code: [Select]
GroupImage("GROUP", "IMAGE");

NOTE:
The only way this code will work is if you remove "Post Group" title for Admins/Mods:
    Admin-> Layout Settings-> Theme Settings-> Turn "Hide post group titles for grouped members" to on. (section two-subsection four-option six)

100% of the credit to making this code goes to Agent Moose
28
General Discussion / Re: How'd You Find CF Coding?
« Last post by luiz on August 05, 2010, 03:11:26 pm »
support.createaforum.com
29
General Discussion / Re: How'd You Find CF Coding?
« Last post by Nick on August 04, 2010, 11:19:50 pm »
And the name of it is...?
30
General Discussion / Re: How'd You Find CF Coding?
« Last post by luiz on August 04, 2010, 10:55:13 pm »
i find this sit at website i use.
Pages: 1 2 [3] 4 5 6