Advanced Button Examples

* Note on the Test: the system will only allow you to have 3 transactions at the same time during the state *

Minimal button

<form action="https://livepay.io/plugins/compatibility/index" method="post">
<input type="hidden" name="cmd" value="_pay">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="merchant" value="606a89bb575311badf510a4a8b79a45e">
<input type="hidden" name="currency" value="LTC">
<input type="hidden" name="amountf" value="10.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="image" src="/assets/docs/img/PNG/Livepay1.png" width="372" alt="Buy now with LivePay.io">
</form>
                                


Button with Shipping Cost

<form action="https://livepay.io/plugins/compatibility/index" method="post">
<input type="hidden" name="cmd" value="_pay">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="merchant" value="606a89bb575311badf510a4a8b79a45e">
<input type="hidden" name="currency" value="LTC">
<input type="hidden" name="amountf" value="1.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="shippingf" value="0.50">
<input type="image" src="/assets/docs/img/PNG/Livepay2.png" width="372" alt="Buy now with LivePay.io">
</form>
                                


Button with Various Items, Shipping and Tax

<form action="https://livepay.io/plugins/compatibility/index" method="post">
<input type="hidden" name="cmd" value="_pay">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="merchant" value="606a89bb575311badf510a4a8b79a45e">
<input type="hidden" name="currency" value="USD">
<input type="hidden" name="amountf" value="10.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="quantity" value="3">
<input type="hidden" name="allow_quantity" value="1">
<input type="hidden" name="shippingf" value="1.00">
<input type="hidden" name="shipping2f" value="0.50">
<input type="hidden" name="taxf" value="0.38">
<input type="image" src="/assets/docs/img/PNG/Livepay3.png" width="372" alt="Buy now with LivePay.io">
</form>
                                


White Button with Buyer's Note, Success / Cancel URLs, and No Shipping Data

<form action="https://livepay.io/plugins/compatibility/index" method="post">
<input type="hidden" name="cmd" value="_pay">
<input type="hidden" name="reset" value="1">
<input type="hidden" name="want_shipping" value="0">
<input type="hidden" name="merchant" value="606a89bb575311badf510a4a8b79a45e">
<input type="hidden" name="currency" value="LTC">
<input type="hidden" name="amountf" value="5.00">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="allow_extra" value="1">
<input type="hidden" name="success_url" value="https://livepay.io/plugins/compatibility/index?cmd=acct_home">
<input type="hidden" name="cancel_url" value="https://livepay.io/plugins/compatibility/merchant-tools">
<input type="image" src="/assets/docs/img/PNG/Livepay4.png" width="372" alt="Buy now with LivePay.io">
</form>