Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Steph Wells

    (@sswells)

    No, that’s not a pre-built integration. We are planning on adding a Zapier integration soon, but it doesn’t look like they have Paytrace integration yet either. Sorry!

    Thread Starter justinae

    (@justinae)

    Ok thanks for the heads up. If we could convince the client to go with Paypal or auth.net would we be able to seemlessly process credit cards from the form without having to go offsite?

    Plugin Author Steph Wells

    (@sswells)

    Our PayPal integration is basic PayPal, so users are sent to PayPal to pay. Authorize integration would need to be done with custom code.

    Thread Starter justinae

    (@justinae)

    Ok. They wanted to stick with Paytrace. We’re just going to link offsite to process the payment. I’ve got it sort of working. Here is the code for the submit button:

    <!--Paytrace Button.-->
    <form action=HTTPS://PAYTRACE.COM/cart/donate.pay method=post>
    <input name=MID type=hidden value=1111111111111111>
    <input name=ID type=hidden value=1111>
    <input name=PID type=hidden value="Donation">
    <input name=cmdPayTraceCart type="http://images/submit_button.png">
    </form>
    <!--Thank you for using PayTrace.com-->
    
    <div class="frm_submit">
    [if back_button]<input type="submit" value="[back_label]" name="frm_prev_page" formnovalidate="formnovalidate" [back_hook] />[/if back_button]
    <input type="submit" value="[button_label]" [button_action] />

    Right now both buttons show up and when I click on the submit_button.png it creates the entry in Formidable as well as sends me to the donation page on Paytrace.

    Is it possible to use the button generated in Formidable to submit the form and direct to the Paytrace URL?

    thanks again.

    Thread Starter justinae

    (@justinae)

    I got it working by adding the [button_action] shortcode. However, I still need to get one thing working. I need the donation amount field to have name=”AMOUNT”. Is that possible?

    Here is the code for the donation field:

    <div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">
        <label for="field_[key]" class="frm_primary_label">[field_name]
            <span class="frm_required">[required_label]</span>
        </label>
        [input]
        [if description]<div class="frm_description">[description]</div>[/if description]
        [if error]<div class="frm_error">[error]</div>[/if error]
    </div>

    Here is the working code for the submit button:

    <!--Paytrace Button.-->
    <form action=HTTPS://PAYTRACE.COM/cart/donate.pay method=post>
    <input name=MID type=hidden value=111111111111>
    <input name=ID type=hidden value=1111>
    <input name=PID type=hidden value="Donation">
    <input name=cmdPayTraceCart type=image src=http://domain/submit_button.png [button_action]>
    </form>
    <!--Thank you for using PayTrace.com-->
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Paytrace integration’ is closed to new replies.