UBF Checkout Demo

Here are examples of the Add-to-cart options you can choose from:

Basic Add-to-cart Button

$100 Conference Registration

 
Show code
<form action="https://ubfoundation.buffalo.edu/test/checkout/index.php" method="post">
<input type="hidden" name="add" value="1">
<input type="hidden" name="site_code" value="0000" />
<input type="hidden" name="ubf_account" value="0000000000" />
<input type="hidden" name="service_type_code" value="7800" />
<input type="hidden" name="shopping_url" value="https://www.ubfoundation.buffalo.edu/ubf-checkout/demo">
<input type="hidden" name="item_name" value="Conference Registration" />
<input type="hidden" name="amount" value="100" />
<input type="submit" name="submit" value="Add to Cart" />
</form>
Add-to-cart Button With Options

$25 UB Bulls Jersey

 
Show code
<form action="https://ubfoundation.buffalo.edu/test/checkout/index.php" method="post">
  <input type="hidden" name="add" value="1">
  <input type="hidden" name="site_code" value="0000" />
  <input type="hidden" name="ubf_account" value="0000000000" />
  <input type="hidden" name="service_type_code" value="7704" />
  <input type="hidden" name="item_name" value="UB Bulls Jersey" />
  <input type="hidden" name="amount" value="25" />
  <input type="hidden" name="shipping" value="5" />
  <input type="hidden" name="shopping_url" value="https://www.ubfoundation.buffalo.edu/ubf-checkout/demo">
  <div>
  <label for="size">Size:</label>
  <select name="option[Size]" id="size">
    <option value="S">S</option>
    <option value="M">M</option>
    <option value="L">L</option>
    <option value="XL">XL</option>
    <option value="XXL">XXL (Adds $5)</option>
  </select>
  <input type="hidden" name="option_amount[Size][XXL]" value="30" />
  </div>
<input type="submit" name="submit" value="Add to Cart" />
</form>
Add-to-cart Link Click here to register for the conference Show code
<a href="https://ubfoundation.buffalo.edu/test/checkout/index.php?add=1&amp;site_code=0000&amp;ubf_account=0000000000&amp;service_type_code=7800&amp;item_name=Conference+Registration&amp;amount=100">
Click here to register for the conference
</a>