Join Option Box vs Button

From TMM Wiki
Jump to navigationJump to search
NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
Sites Admin
The Sites Admin
Sites
Site Setup
Site Templates
Tour Setup
Join Options
No Cost Registration
Special Pricing Options
Join Option Rules
Post URL Usage
Post URLs in NATS4
Approval/Upgrade/Denial Variables
Approval/Upgrade/Denial Template Variables
Mobile Tours
Token Sites
ID Numbers
Site Partner
Site User Management
Example Postbacks for Site User Management
Configure Redirects
Split A-B Testing
Username Checking
Form Validation
Post-Biller Templates
Send Information To Special Biller
Join Option Box vs Button
Qualified Join Page Hits
Allowed languages
Customize Join Form
Package Plus
Token Plus
Signup Plus
Type-In Traffic
Coupon Codes
Setting Rules
Site Groups
Options Simulator
ATVOD Verification Process
NATS 3
Sites Admin
Sites
Site Setup
Configure Redirects
ID Numbers
Automail
Site User Management
Username Checking
Join Form Errors
Free Pre-Initial Checkbox
Payouts Based on Program and Join Options
Payouts Based on Join Option and Per Option
Adding Extra Site Tours
Site Partner
Join Options
Multisite Access
Removing Join Options
Tour Setup
Site Undelete
Join Option Box vs Button
Redirecting Traffic to a Sponsor
Qualified Join Page Hits
Type-In Traffic
Allowed languages
Linkcode Decoding

NATS4 offers the feature of allowing you to display radio buttons as opposed to a drop-down menu or select box in the join option section of the NATS Join Form.

If you would like to add this feature, navigate to the Sites Admin, then click the "Edit Site Templates" icon next to the site you would like to change join option displays for.

On the "Edit Site Templates" page, find the site template named join to edit your default Join Form. Click the customize icon to edit your template, and replace your old code (shown below) in the Template Body with the new code given below:

Old: Select Box

<select name="signup[optionid]" class="join_select">
{html_options options=$join_options selected=$vars.optionid}
</select>

New: Radio Buttons
For NATS 4 use:

{html_radios name="signup[optionid]" options=$join_options selected=$join_optionids.0 separator="<br>"}

The $join_optionids.0 variable above will automatically set the selected radio button to the first option listed.

For NATS 3, use the following code instead:

{html_radios name="signup[optionid]" options=$join_options selected=$vars.optionid separator="<br>"}