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

Pages: [1] 2 3 ... 80
1
If you've sent a PM, no need to create a post.

2
Create a Forum Codes and Support / [Code] Hide Tabs V3
« on: January 04, 2015, 01:02:00 am »
Description: Hides any tabs you want.

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

Footers:
Code: [Select]
<script>var hideTabs=["tabname1","tabname2"];for(i=0;i<hideTabs.length;i++)$("#menu_nav").children("li").children("a").children("span").each(function(){$(this).text().trim().toLowerCase()==hideTabs[i].toLowerCase()&&$(this).remove()});</script>
Editing Instructions: Modify tabname1 and tabname2 inside the hideTabs array to the name of the tab you want to hide. You may hide more by adding a comma followed by a pair of quotation marks with the tab name inside of them.

Spoiler (hover to show)

3
Create a Forum Codes and Support / Re: [Code] Name Across Board
« on: January 03, 2015, 04:32:27 am »
The link is only available if you upload your avatar directly to the site, which not everyone does. The filename is also unpredictable
I've seen a website do it before, it's not createaforum but it's an SMF
Most likely, that website was using a mod which users can't install here at CreateAForum.

4
Suggestions / Re: Top Five Features That every webmaster wants here
« on: December 31, 2014, 05:22:13 am »
You're better off using your time to give more purpose to your forums so that people have a reason to join and stay. Sure search engines might help but word of mouth is more valuable.

5
Create a Forum Codes and Support / Re: I have code problems...
« on: December 24, 2014, 06:01:37 pm »
You've changed it once again.....
Change
Code: [Select]
li.innerHTML = AwesomeCoins + ": " + $ + (RegExp.$1 * Amount); to
Code: [Select]
li.innerHTML = Name + ": " + Sign + (RegExp.$1 * Amount);

6
Create a Forum Codes and Support / Re: [Code] Name Across Board
« on: December 23, 2014, 03:41:12 am »
The link is only available if you upload your avatar directly to the site, which not everyone does. The filename is also unpredictable

7
Create a Forum Codes and Support / Re: I have code problems...
« on: December 23, 2014, 03:36:28 am »
You modified the code which caused it to stop working. Change
Code: [Select]
li.innerHTML = RegExp.$1; to
Code: [Select]
li.innerHTML = Name + ": " + Sign + (RegExp.$1 * Amount);

8
Create a Forum Codes and Support / Re: [Code] Shop (Beta 02.06.13)
« on: December 13, 2014, 08:20:23 pm »
I just added my own money system to it, but there is a huge flaw with the code, users purchasing must have permission to edit the fields making this useless.
There isn't any better way to implement this without creating a server to store the information in

9
Create a Forum Codes and Support / Re: [Code] Hide Tabs V2
« on: September 07, 2014, 06:14:12 pm »
Code: [Select]
<script>function xboi209_hidetabs(tab){$("#menu_nav > li:contains('"+tab+"')").remove();}xboi209_hidetabs("Search");</script>

10
Suggestions / Re: Acknowledge "Request Desktop Site" requests
« on: June 27, 2014, 02:16:06 am »
Yes but I still prefer using the web browser option

11
Suggestions / Re: Acknowledge "Request Desktop Site" requests
« on: June 26, 2014, 09:31:43 pm »
Mobile browsers have a feature called "Request Desktop Site" to notify websites that the mobile device wants to be treated like it's a regular desktop computer. This basically means don't use the mobile theme anymore

12
Suggestions / Re: Recent Posts ezBlock: Scroll down function
« on: June 26, 2014, 07:33:06 am »
Ok I'll take one last shot into it

13
Suggestions / Acknowledge "Request Desktop Site" requests
« on: June 26, 2014, 07:30:35 am »
It's for mobile browsers

14
Create a Forum Codes and Support / [API] accID
« on: June 05, 2014, 11:43:17 pm »
For coders only!


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

Code: [Select]
function accID(n){var t,i;return $.ajax({url:smf_scripturl+"?action=mlist;sa=search",async:!1,type:"POST",data:"search="+n+"&fields%5B%5D=name"}).done(function(r){if(t=$(r).find("#mlist").children("table").children("tbody").children("tr").eq(0).children("td").eq(1).children("a"),t.html()!==n)return console.log("accID: Username "+n+" not found"),!1;i=t.attr("href")}).fail(function(){return console.log("accID: Failed to send POST request"),!1}),i.split("u=")[1]}

Usage:
Code: [Select]
accID(username);

15
Create a Forum Codes and Support / Re: [API] sendPM
« on: June 05, 2014, 10:27:26 pm »
Looks neat
Hey would you mind telling me the purpose of this sequence number and how it is generated? The code makes a GET request solely for the sequence number which is pretty overkill


Pages: [1] 2 3 ... 80