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 - CyanProductions

Pages: [1] 2 3
1
Suggestions / Re: Few suggestions
« on: February 27, 2015, 07:28:01 pm »
1. @CreateAForum
2. You can do this with code: http://support.createaforum.com/5/(code)-color-membergroup-posts/

2
Create a Forum Codes and Support / [Code/Fix] Quick Reply
« on: February 26, 2015, 06:20:18 pm »
{Code}: Quick Reply Fix

This code utilizes jQuery, please use the latest version found in this thread: http://support.createaforum.com/5/jquery-v1-8-update/Footers:

Description: Fix for the quick reply(Now no longer requires you to press it twice)

Footers:

Code: [Select]
<script>
javascript:oQuickReply.swap();
</script>


- Cyan

4
kk, thanks

5
When I go to any page on my forums it goes to this: http://cyanproductions.createaforum.com/NaN page and constantly refreshes. I tried disabling JavaScript but that didn't work.

6
Create a Forum Codes and Support / Re: [Code] Spoiler
« on: January 12, 2015, 06:39:09 pm »
We have one built in with the spoilder tags
Is it only possible to use in comments? This one can be used anywhere on the forum.

7
Create a Forum Codes and Support / Re: [Code] Spoiler
« on: January 12, 2015, 06:35:58 pm »
oh... :3
This one is still customize-able,
However, I'm sure it's possible to customize the built in spoilers.

8
Suggestions / Re: free virtual pet feature for forums!
« on: January 11, 2015, 08:41:35 pm »
You could probably write some code to do this.

9
Create a Forum Codes and Support / [Code] Spoiler
« on: January 11, 2015, 12:19:52 pm »
{Code}: Spoiler



Description:
Show/Hide objects(text, image, etc..)


This code utilizes jQuery, please use the latest version found in this thread: http://support.createaforum.com/5/jquery-v1-8-update/

Footers:

Quote
<script>
$("[class*='show_text']").hide();
var show_count = 0; $( ".show_" ).click(function() {   show_count = $(this).attr("id");   if ($("#" + show_count + ".show_text").is(":hidden")) {     $("#" + show_count + ".show_text").show();     $("#" + show_count + ".show_hint").hide();     $(this).text("Hide")   } else {     $("#" + show_count + ".show_text").hide();     $("#" + show_count + ".show_hint").show();     $(this).text("Show")   } });
</script>



Setup: Create html buttons: <button id="0" class="show_">Show</button> | Create spoiler hint: <p id="0" class="show_hint">(this is a spoiler)</p> | Create text that hides and shows: <p id="0" class="show_text">This is Text</p>

Editing: If you would like to add more than 1 spoiler, simply copy and paste the button and text. Change the 0 to {1,2,3,4,5,6,7, etc...}



Example:
[Show](this is a spoiler)


[Hide] This is text




- Cyan

10
Suggestions / Re: Edit Reputation
« on: January 07, 2015, 09:40:02 pm »
I already did, can you have a look because I don't see it.

11
Suggestions / Re: Edit Reputation
« on: January 07, 2015, 09:02:13 pm »
Admins can do it, but what if I want to allow other membergroups to do it to?

12
Suggestions / Edit Reputation
« on: January 07, 2015, 08:29:44 pm »
Add a permission to edit your own karma.

13
Create a Forum Codes and Support / [Code] Page Off Limits
« on: January 04, 2015, 03:59:14 pm »


Description: Make a page Off Limits to a user

This code utilizes jQuery, please use the latest version found in this thread: http://support.createaforum.com/5/jquery-v1-8-update/

Footers:

Quote
<script>
if (location.href == smf_scripturl + "?X") { if ($("li.greeting").text() == "Hello Y") { $("div#main_content_section").remove(); $( "div#footer_section div.frame" ).before( "<br><center><h1>This is Off Limits to you</h1></center><br>" );}}
</script>


Editing: Change the red X to the url you want off limits. You only need the segment of the url after the ?
Change the red Y to the user you would like to make this Off limits to, you can change the first =, on the same line as the red Y to an !, this will only give that user access to the page.

14
Create a Forum Codes and Support / Re: I have code problems...
« on: January 04, 2015, 01:13:24 am »
Flyzer, this is what you want:

Code: [Select]
<script type="text/javascript">
var Name = "AwesomeCoins";
var Sign = "$";
var Amount = 1;

var Aug_02_2010 = document.getElementsByTagName("li");
//Created by Agent Moose
for(x=0;x<Aug_02_2010.length;x++){
if(Aug_02_2010[x].className === "postcount" && Aug_02_2010[x].innerHTML.match(/posts: (.*)/i)){
var li = document.createElement("li");
li.className = "money";
li.innerHTML = Name + ": " + Sign + (RegExp.$1 * Amount);
Aug_02_2010[x].parentNode.insertBefore(li, Aug_02_2010[x].nextSibling);
};
};
</script>

The only thing you might want to change is: "var Amount = 1;"
Where the 1 is replaced with the amount you want per post.

15
Create a Forum Codes and Support / Re: [Code] Hide Tabs V3
« on: January 04, 2015, 01:07:59 am »
Very complex but efficient.
I was trying to figure out a way to do that, but I knew I wouldn't be the guy.

Pages: [1] 2 3