• Hi Justin,

    Thank you for the plugin. Is there a way to receive an email notification after the payment has been made? In addition, how can the form say Invoice Number rather than Note.

    Thanksa
    RObert

    The page I need help with: [log in to see the link]

Viewing 10 replies - 1 through 10 (of 10 total)
  • You can change the form to say “Invoice Number” rather than “Note” with some jQuery.

    In your theme’s functions.php add:

    add_action(‘wp_footer’, ‘my_custom_form_text’);
    function my_custom_form_text() {
    ?>
    <script>
    jQuery(function() {
    jQuery(‘#sc-form .sp-field-wrap label[for=sp-desc]’).html(‘Invoice Number’);
    });
    </script>
    <?php
    }
    ?>

    Thread Starter robertflower

    (@robertflower)

    thank you mcmwebsol.

    It didnt work for me. By the way, how does one receive notification when the transaction has completed. I am not receiving one. It it just due to the sandbox nature?
    thanks
    Robert

    Plugin Author justinwhall

    (@jwind)

    RE: changing note copy. There is not official way to do this. The code posted above should however. Be sure the quotes are not curly like above however.

    The plugin does not provide notification but Stripe can be configured to notify you.

    • This reply was modified 5 years, 4 months ago by justinwhall.
    • This reply was modified 5 years, 4 months ago by justinwhall.
    • This reply was modified 5 years, 4 months ago by justinwhall.
    Thread Starter robertflower

    (@robertflower)

    Thank you Justinwhall,

    The adjustment to the curly quotes did the job. Is there a way to add Business name to the form?

    thanks and best
    robert

    Plugin Author justinwhall

    (@jwind)

    The form is just two input fields. You can, however, put whatever you want above (or below) the shortcode.

    Thread Starter robertflower

    (@robertflower)

    Thanks forgetting back so quickly.

    DO you have a premium version of the plugin that offers more customization?

    Thanks and best
    Robert

    Plugin Author justinwhall

    (@jwind)

    No, not at this time. Out of curiosity, what would you want in terms of customizations?

    Thread Starter robertflower

    (@robertflower)

    i need to be able to allow payments to be made to two different accounts. One for CA customers only, one for all other states.

    Thread Starter robertflower

    (@robertflower)

    Any suggestions for payments to two accounts?

    Thread Starter robertflower

    (@robertflower)

    I have the plugin working. By default it has three fields. One of those fields I have titled Business Name and Invoice number. Is there a way to have an additional field so Business name and Invoice number have their own fields?
    example

    thank you
    robert

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Notifcation’ is closed to new replies.