NOTICE: Our online payment portal is currently under maintenance, please call (508) 829-9453 if you’d like to make a payment.

<div id="checkout_button">Pay</div>
<script
src="https://secure.cocardgateway.com/token/CollectCheckout.js"
data-checkout-key="checkout_public_3shugU958aYV56Z6J6KCd5mMyS2k62CN"
></script>
<script>
window.addEventListener('DOMContentLoaded', function(e) {
document.getElementById('checkout_button').addEventListener('click', function(e) {
CollectCheckout.redirectToCheckout({
type: "sale",
lineItems: [
{
lineItemType: "customPayment",
description: "Online Payment",
currency: "USD"
},
],
successUrl: "https://wildecompanies.com/thankyou",
cancelUrl: null,
customerVault: {
addCustomer: true
},
receipt: {
showReceipt: true,
redirectToSuccessUrl: true,
sendToCustomer: true,
},
useKount: false,
paymentMethods: [
{
type: "creditCard",
use3DSecure: false,
},
{
type: "googlePay",
use3DSecure: false,
},
{
type: "applePay",
use3DSecure: false,
},
],
fields: [
],
}).then((error) => {
console.log(error);
});
});
});
</script>
<style>
#checkout_button {
display: inline-block;
font-family: 'Open Sans';
font-weight:600;
font-size: 1.2em;
text-align:center;
color:#fff;
border-radius:10px !important;
background-color: #c60f13;
color: white;
border-radius: 4px;
padding: 6px 20px;
}
#checkout_button:hover {
cursor: pointer;
}
</style>