Add to Cart
This option is ideal if you are selling multiple items on your website. Simply create an Add to Cart button for each item and place the button code (html) on your website. Customers can then select the item that they would like to purchase and each item will be added to their cart.
<form method="post" action="https://www.payjunction.com/trinity/quickshop/add_to_cart.action">
<input name="store" value="YOUR-SHOP-ID" type="hidden">
<input name="need_to_ship" value="no" type="hidden">
<input name="need_to_tax" value="no" type="hidden">
<input name="quantity" value="1" type="hidden">
<input name="identifier" value="Online Payment" type="hidden">
<input name="description" value="Sample product description" type="hidden">
<input name="price" value="5.00" type="hidden">
<input name="submit" value="Add To Cart" type="submit">
</form>
Here is what the shopping cart looks like.
Snap Checkout
The Snap Checkout option is perfect for accepting payment, donations or selling a single item on your website. Customers simply click on the button and they are immediately taken to the checkout page to submit the payment.
<form method="post" action="https://www.payjunction.com/trinity/quickshop/add_to_cart_snap.action">
<input name="store" value="YOUR-SHOP-ID" type="hidden">
<input name="need_to_ship" value="no" type="hidden">
<input name="need_to_tax" value="no" type="hidden">
<input name="quantity" value="1" type="hidden">
<input name="identifier" value="Online Payment" type="hidden">
<input name="description" value="Sample product description" type="hidden">
<input name="price" value="5.00" type="hidden">
<input name="submit" value="Select and Checkout" type="submit">
</form>
Here is what the Billing page looks like for the snap checkout
View Cart
View cart allows customers to view the contents of their cart before checking out. This button is helpful when you are selling multiple items (see Add To Cart above). If customers would like to review the contents of their cart, they can click on the View Cart button to see the items that were added to the cart.
<form method="post" action="https://www.payjunction.com/trinity/quickshop/view_cart_init.action"> <input name="store" value="YOUR-SHOP-ID" type="hidden">
<input name="store" value="YOUR-SHOP-ID" type="hidden">
<input name="submit" value="View Cart" type="submit"> </form>
Here is what the cart looks like with the items in it.
Checkout
The checkout option takes the customer to the check out page. This button is helpful when you are selling multiple items (see Add To Cart above). Once the customer is done selecting the items that they would like to purchase, they can click on the Checkout button to submit payment.
<form method="post" action="https://www.payjunction.com/trinity/quickshop/check_out_init.action"> <input name="store" value="YOUR-SHOP-ID" type="hidden">
<input name="submit" value="Checkout Now" type="submit">
</form>
Here is what the checkout cart looks like.