Post by Former Member on Feb 9, 2013 23:48:40 GMT -8
Ok, so the code for Post template system isn't working anymore due to the new system. How or what can I do to fix this?
Code:
Code:
<script type="text/javascript">
<!--
/* Posting Request Form/Template v2 by california
?2005 SoCal Codes, [url]http://socal.proboards26.com[/url] */
var field = ['']; function addSingleInput(title, desc){field.push(['input', title, desc]);}
function addDropdown(title, desc, opts){var other = (arguments[3]) ? arguments[3] : ''; field.push(['select', title, desc, opts.split('|'), other]);}
function addTextarea(title, desc, rows){field.push(['textarea', title, desc, rows]);}
/* Customize Below This Line */
var titleMessage = "Affiliation Application";
var subjectName = "Name of site";
var subjectDescription = "Self-explanatory.";
var keepMessageIcon = "yes";
var columnWidths = ["24%", "38%", "38%"];
addSingleInput("Site URL", "Please enter the link to your site.");
addDropdown("Catagory", "Select which catagory in which your site falls under.", "Community - Gaming|Community - Graphics & Design|Community - Sports|Community - Others|RPG - Animals|RPG - Fantasy|RPG - Human|RPG - Others", "Other...");
addDropdown("Rating", "Select which rating your site is suited for.","E|PG|PG-13|16+|Mature users only");
addDropdown("Experience", "*For RPGs only","-------|For All|Beginners|Beginner-Intermediate players|Intermediate|Intermediate-Advanced players|Advanced players");
addTextarea("Plot/Storyline", "Please submit a brief description of what your site is all about.", "8");
addSingleInput("Do you have our banner?", "Please also state the location of the banner. If I cannot find our banner on your site, your application will be denied.");
addTextarea("HTML code for your banner/button", "Please submit the HTML code for your banner so that we may add it to our affiliation list.", "4");
addTextarea("Additional Comments", "Say anything else you would like to say here.", "4");
/* Customize Above This Line */
if(document.postForm) document.write('<script type="text/javascript" src="http://www.iycatacombs.com/socal/resources/scripts/postingformv2.js"></scr'+'ipt>');
// -->
</script>