|
Affiliate Links Designer
|
Top Previous Next |
| First, design the preview "page".
|
| Each of your Link/Form options will be run through a template, so that you can control how they show to your users. This Internal Template is located in the "Jackhammer" area of the Internal templates manager, and is called "searchboxdisplay". Note that the system encloses all of your defined options inside of a <table></table> tag, so we recommend that you design your "searchboxdisplay" as a <tr> .... </tr> (table row), or series of rows so that everything lines up right.
|
|
|
| Within it, you can use any of the following replacement variables:
|
|
|
|
|
|
| Here's a sample (the system default):
|
|
|
| <tr bgcolor='black'>
|
| <td colspan='2'>
|
| <font color='white'><<name>></font>
|
| </td>
|
| </tr>
|
| <tr>
|
| <td><<instructions>></td>
|
| <td valign='top' rowspan='2'><<sample>></td>
|
| </tr>
|
| <tr>
|
| <td>
|
| <textarea cols='50' rows='5'><<code>></textarea>
|
| </td>
|
| </tr>
|
| <tr bgcolor='white'><td colspan='2'> </td></tr>
|
|
|
|
|
|
|
| Now, Design each of your linking / form options
|
| You may design as many of these as you like. However, unlike all other Internal Templates, these require a special naming convention, and a special format.
|
|
|
| NAMES: You may define as many affiliate linking or form options as you like. Each of them, located in the "Jackhammer" area of the Internal Templates manager must be named "SEARCHBOXCODEx", where "x" is a unique number, starting with "01". For example, if you were to create 4 different affiliate linking/form options, you'd name them: SEARCHBOXCODE01, SEARCHBOXCODE02, SEARCHBOXCODE03, and SEARCHBOXCODE04. These must be "LAYOUT" internal template types.
|
|
|
| FORMAT: Each internal template has 4 parts: "Name", "Instructions", "Code", "Sample" ... contained within "blocks". Blocks resemble HTML tags, bearing the name of the part of the template. A block needs both an opening and closing tag. Here are the parts required:
|
|
|
|
|
|
| Here's a sample affiliate link/form option -- a standard search box.
|
|
|
| <NAME>
|
| Old Fashioned Search Box
|
| </NAME>
|
|
|
| <INSTRUCTIONS>
|
| <br />
|
| You may create a search form on your website that
|
| sends your visitor to our results page</b>
|
| <br />
|
| To use the search box, copy the HTML code below, and
|
| put it onto any HTML page on your web site.
|
| </INSTRUCTIONS>
|
|
|
| <CODE>
|
| <FORM ACTION="<<URL>>" METHOD="post">
|
| Search: <INPUT TYPE="text" NAME="Terms" SIZE="15">
|
| <INPUT TYPE="hidden" NAME="affiliate" VALUE="<<AFFILIATE>>">
|
| <INPUT TYPE="submit" VALUE="Go">
|
| </FORM>
|
| </CODE>
|
| <SAMPLE>showcode</SAMPLE>
|