New NATS4 Sites Admin
From Tmmwiki
The NATS4 Sites Admin cleans up the site action icons. The table below lists the differences between the NATS3 and NATS4 action icons.
| Name | NATS3 | NATS4 | Notes |
|---|---|---|---|
| Edit Site Details | | | |
| Edit Sign-up Form Templates | | | |
| Duplicate Site | | NATS4 no longer supports this option. | |
| Configure Default Payouts and Enabled Options | | See Programs Admin, the Commissions Tab | |
| Setup Cascades | | ||
| Show All Active Members | | Use The Members Admin Search in NATS4 | |
| Show All Expired Members | | Use The Members Admin Search in NATS4 | |
| Profit/Loss Report | | Use The Reports Admin in NATS4 | |
| Delete This Site | | | |
| Add New Tour | | Was In The NATS3 Edit Site Details | |
| Set Active Programs | | Was In The NATS3 Edit Site Details | |
| Configure Redirects | | Was In The NATS3 Edit Site Details | |
| Edit Site Partners | | ||
| Set Join Options | |
Contents |
Site Tours
We moved the options in NATS3's Edit Site page into the Edit Tour page. You can access this page by selecting a tour and clicking the Edit Tour button.
For each tour, you can now change the GeoIP targeting, billers, join options, and other settings. For example: one site can now offer different join options for an email tour and a console tour.
Each tour uses the default tour's settings until you override them. You don't need to change every setting on a new tour's page: just change the settings you want to be different from the default tour.
Join Form Template
You can copy a standard NATS3 join form template to NATS4 if you make the following two changes:
Step Value
NATS 3
<input type="hidden" name="step" value="2">
NATS 4
<input type="hidden" name="step" value="signup">
Special Join Options
NATS 3
{if $have_special_options}
<form action="signup.php" method="POST">
<input type="hidden" name="site" value="{$smarty.request.site}">
<input type="hidden" name="program" value="{$smarty.request.program}">
<input type="hidden" name="campaign" value="{$smarty.request.campaign}">
<input type="hidden" name="nats" value="{$nats_code}">
<input type="hidden" name="step" value="special">
<TR><TD class="join_header" colspan=2>Prefer a different Payment Method?</tD></TR>
{section name=option loop=$special_options}
<TR><TD class="join_footer" colspan=2><input class="join_button" type="submit" name="special[{$special_options[option][1]}]" value="{$special_options[option][0]}"></tD></TR>
{/section}
</form>
{/if}
NATS 4
{if $have_special_options}
<form action="signup.php" method="POST">
<input type="hidden" name="nats" value="{$nats_code}">
<input type="hidden" name="step" value="special">
<TR><TD class="join_header" colspan=2>Prefer a different Payment Method?</tD></TR>
{foreach from=$special_options item=option_name key=optionid}
<TR><TD class="join_footer" colspan=2><input class="join_button" type="submit" name="special[{$optionid}]" value="{$option_name}"></tD></TR>
{/foreach}
</form>
{/if}
Gateway Join Form
You can copy a standard gateway join form template if you make the following changes:
Option Name
NATS 3
-
$option.name
NATS 4
-
$option_info.name
Gateway Cross-sells
NATS 3
{gateway_xsell}
{if $have_xsells}
{foreach from=$xsells item="xsell"}
<TR>
<TD class="join_name">
<input type="checkbox" name="signup[xsell][]" value="{$xsell.data}" checked /></TD>
<TD class="join_value">{$xsell.description} {$xsell.disclaimer}</TD>
</TR>
{/foreach}
{/if}
NATS 4
{foreach from=$xsells item="xsell" key=xid}
<TR>
<TD class="join_name">
<input type="checkbox" id=xsell name="signup[xsell][]" value="{$xid}"/></TD>
<TD class="join_value">{$xsell.details.name}</TD>
</TR>
{/foreach}
See Also
- New NATS4 Programs Admin -- Configure affiliate payouts
- New NATS4 Members Admin -- Find members of a site
- New NATS4 Reports Admin -- View a site's profit and loss report
- New NATS4 Configuration Admin -- Send emails on site changes

