New NATS4 Sites Admin

From Tmmwiki

Jump to: navigation, search
NATS4 Upgrade Changelog
The New NATS4 Sites Admin
Administration Changes
New NATS4 Admins
New NATS4 Admin Overview
New NATS4 Reports Admin
New NATS4 Payments Admin
New NATS4 News and Notifications Admin
New NATS4 Affiliates Admin
New NATS4 Members Admin
New NATS4 Sites Admin
New NATS4 Programs Admin
New NATS4 Billers Admin
New NATS4 Third-Party Admin
New NATS4 Adtools Admin
New NATS4 Upsells Admin
New NATS4 Includes Admin
New NATS4 Mailing Admin
New NATS4 Skins & Templates Admin
New NATS4 Configuration Admin
New NATS4 Cleanup and Maintenance Admin
New NATS4 Logs Admin
Affiliate Changes
New NATS4 Affiliate Overview
New NATS4 Affiliate Stats
New NATS4 Affiliate Adtools
New NATS4 Affiliate My Account
New NATS4 Affiliate Payments

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 Image:Pen_16.gif Image:Pen_16.gif
Edit Sign-up Form Templates Image:Edit_script_16.gif Image:Script_16.gif
Duplicate Site Image:Copy_16.gif NATS4 no longer supports this option.
Configure Default Payouts and Enabled Options Image:Database_16.gif See Programs Admin, the Commissions Tab
Setup Cascades Image:Biller_16.gif
Show All Active Members Image:User_16.gif Use The Members Admin Search in NATS4
Show All Expired Members Image:Disableduser_16.gif Use The Members Admin Search in NATS4
Profit/Loss Report Image:Profitloss_16.gif Use The Reports Admin in NATS4
Delete This Site Image:Trash_16.gif Image:Trash_16.gif
Add New Tour Image:Addtext_16.gif Was In The NATS3 Edit Site Details
Set Active Programs Image:Lgicn_16.gif Was In The NATS3 Edit Site Details
Configure Redirects Image:Go_16.gif Was In The NATS3 Edit Site Details
Edit Site Partners Image:Group_16.gif
Set Join Options Image:Cash_16x16.gif

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.

Edit Site Tour

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.

The New Site Tours

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

products