Send your payments to Wildpraize Music & Media using your credit card, debit card, or PayPal account securely and immediately. Fill out the form below and click on the “PAY NOW” button. Please be sure to state your name and the product you are paying for.
Directions For Online Payments
You do NOT have to have a PayPal account to make a payment!
A new browser window will pop-up with the PayPal page, which will handle the safe transaction and tracking of your payment. Please use the billing address that belongs to the card you will be using. Your card could be rejected if the information is incorrect. You will receive an e-receipt and e-confirmation of your payment for your records.
Visa, Mastercard, Discover, American Express and e-check are accepted. If you have any questions regarding your payment, please contact us at 720.629.0428 before making your payment on line!
FULL payment is required for all orders under $100. Payment is required before any and all projects begin! No exceptions!
Make Payment HERE >>> MAKE PAYMENT
Temporary Link
// Render the PayPal button
paypal.Button.render({
// Set your environment
env: 'sandbox', // sandbox | production
// Specify the style of the button
style: { layout: 'vertical', // horizontal | vertical size: 'medium', // medium | large | responsive shape: 'rect', // pill | rect color: 'gold' // gold | blue | silver | black },
// Specify allowed and disallowed funding sources // // Options: // - paypal.FUNDING.CARD // - paypal.FUNDING.CREDIT // - paypal.FUNDING.ELV
funding: { allowed: [ paypal.FUNDING.CARD, paypal.FUNDING.CREDIT ], disallowed: [ ] },
// PayPal Client IDs - replace with your own // Create a PayPal app: https://developer.paypal.com/developer/applications/create
client: {
sandbox: 'AZDxjDScFpQtjWTOUtWKbyN_bDt4OgqaF4eYXlewfBP4-8aqX3PiV8e1GWU6liB2CUXlkA59kJXE7M6R',
production: '
payment: function(data, actions) { return actions.payment.create({ payment: { transactions: [ { amount: { total: '0.01', currency: 'USD' } } ] } }); },
onAuthorize: function(data, actions) { return actions.payment.execute().then(function() { window.alert('Payment Complete!'); }); }
}, '#paypal-button-container');