Difference between revisions of "NATS3 Euro Payment Group"
TMMStephenY (talk | contribs) m (→Sites Admin) |
|||
Line 2: | Line 2: | ||
| show_billers_section = true | | show_billers_section = true | ||
}} | }} | ||
− | == Setting Up at | + | == Setting Up at EPGBill.com == |
− | Before you can begin configuring | + | Before you can begin configuring EPGBill.com in [[NATS3]], you must first register an account with them. This can be done through their website at http://www.epgbill.com/contact. |
− | While registering with | + | While registering with EPGBill.com, make sure to take down the Merchant ID, Merchant Guid, Site URL, Email, Phone, and Content Provided By name. This information will be necessary for setting up EPGBill.com in [[NATS3]]. |
− | == Setting Up | + | == Setting Up EPGBill.com in NATS == |
=== Billers Admin === | === Billers Admin === | ||
− | To begin setting up | + | To begin setting up EPGBill.com in [[NATS]], go to the Billers Admin. Scroll down to the "Biller" drop-down menu, select EPGBill.com, and click "Add." |
− | '''Note:''' If you don't see | + | '''Note:''' If you don't see EPGBill.com, [http://www.toomuchmedia.com/clients put in a support ticket], as you may need an updated version of [[NATS]]. |
− | Fill in the Merchant ID and Merchant Guid that were provided to you by | + | Fill in the Merchant ID and Merchant Guid that were provided to you by EPGBill.com. If you were not provided with this information, please contact EPGBill.com. |
=== Sites Admin === | === Sites Admin === | ||
− | Next, go to the Sites Admin, create or edit a [[Ct#Site|site]], and scroll down to the "Biller Details" section. Find the "EUROPAY" settings, and enter your Site URL, Email, Phone, and Content Provided By name. This information will be provided to you by | + | Next, go to the Sites Admin, create or edit a [[Ct#Site|site]], and scroll down to the "Biller Details" section. Find the "EUROPAY" settings, and enter your Site URL, Email, Phone, and Content Provided By name. This information will be provided to you by EPGBill.com. |
− | Once you have done that, scroll down to the "Join Options this Site Offers" section and create or edit a join option to add | + | '''Note: The shortname of EPGBill.com in [[NATS]] is "EUROPAY"''' |
+ | |||
+ | Once you have done that, scroll down to the "Join Options this Site Offers" section and create or edit a join option to add EPGBill.com compatibility. Under "Biller Codes", choose the currency type that you want EPGBill.com to record your transactions under. The default setting for this is US Dollar. | ||
=== Editing Site Templates === | === Editing Site Templates === | ||
− | Before you can begin processing [[NATS]] transactions for [[Ct#Surfer|surfers]] from the U.S. and Canada through | + | Before you can begin processing [[NATS]] transactions for [[Ct#Surfer|surfers]] from the U.S. and Canada through EPGBill.com, you must also get their state information. Without retrieving the state that the [[Ct#Surfer|surfer]] is located in, this [[Ct#Biller|biller]] transaction will fail for surfers based in the U.S. and Canada. |
To avoid facing this issue, you can insert code on your [[Ct#Join Form|join page]] [[Ct#Template|template]] in order to retrieve this information. This can be done through the Sites Admin. Simply click the "Edit Signup Form Templates" action icon for the [[Ct#Site|site]] you wish to change, and edit the subsequent ''join'' template. | To avoid facing this issue, you can insert code on your [[Ct#Join Form|join page]] [[Ct#Template|template]] in order to retrieve this information. This can be done through the Sites Admin. Simply click the "Edit Signup Form Templates" action icon for the [[Ct#Site|site]] you wish to change, and edit the subsequent ''join'' template. |
Latest revision as of 15:19, 13 January 2012
Setting Up at EPGBill.com
Before you can begin configuring EPGBill.com in NATS3, you must first register an account with them. This can be done through their website at http://www.epgbill.com/contact.
While registering with EPGBill.com, make sure to take down the Merchant ID, Merchant Guid, Site URL, Email, Phone, and Content Provided By name. This information will be necessary for setting up EPGBill.com in NATS3.
Setting Up EPGBill.com in NATS
Billers Admin
To begin setting up EPGBill.com in NATS, go to the Billers Admin. Scroll down to the "Biller" drop-down menu, select EPGBill.com, and click "Add."
Note: If you don't see EPGBill.com, put in a support ticket, as you may need an updated version of NATS.
Fill in the Merchant ID and Merchant Guid that were provided to you by EPGBill.com. If you were not provided with this information, please contact EPGBill.com.
Sites Admin
Next, go to the Sites Admin, create or edit a site, and scroll down to the "Biller Details" section. Find the "EUROPAY" settings, and enter your Site URL, Email, Phone, and Content Provided By name. This information will be provided to you by EPGBill.com.
Note: The shortname of EPGBill.com in NATS is "EUROPAY"
Once you have done that, scroll down to the "Join Options this Site Offers" section and create or edit a join option to add EPGBill.com compatibility. Under "Biller Codes", choose the currency type that you want EPGBill.com to record your transactions under. The default setting for this is US Dollar.
Editing Site Templates
Before you can begin processing NATS transactions for surfers from the U.S. and Canada through EPGBill.com, you must also get their state information. Without retrieving the state that the surfer is located in, this biller transaction will fail for surfers based in the U.S. and Canada.
To avoid facing this issue, you can insert code on your join page template in order to retrieve this information. This can be done through the Sites Admin. Simply click the "Edit Signup Form Templates" action icon for the site you wish to change, and edit the subsequent join template.
You can use the following code to retrieve state information from your surfers:
<TR><TD class="join_name">State:</TD><TD class="join_value">{if $vars.state || $mdata.state}{assign var=state value=$vars.state|default:$mdata.state}{else}{assign var=state value=$states}{/if}<select name="signup[state:1]" id=state>{html_options options=$states selected=$state}</select></TD></TR>
This will display a drop-down menu where the user will be able to select the state that they are located in.