[email protected]
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Stripe] [Plugin: WP Stripe] shortcode processingI’ve placed stripe-display.php and stripe-functions.php at http://pastebin.com/qMxhtnG0
These changes only address the shortcode fix.
Forum: Plugins
In reply to: [WP Stripe] [Plugin: WP Stripe] How to make Another field 'Required'in stripe-display this is how I made the name required;
`jQuery(document).ready(function() {
jQuery(“#ccg-stripe-payment-form”).submit(function(event) {jQuery(“.payment-errors”).hide();
if(jQuery(‘#ccg-name’).val()==””){ //added to require name
alert(“Please enter your name”);
return false;
}
`
note I added the id=’ccg-name’ to the name input html.Forum: Plugins
In reply to: [WP Stripe] [Plugin: WP Stripe] shortcode processing@noel Tock would you like the code I modified to maybe issue an update? I am getting a few requests for the fix.
Forum: Plugins
In reply to: [WP Stripe] [Plugin: WP Stripe] shortcode processing@helgatheviking I did modify those files. If you would send me an email and I’ll send them to you. Use at you discretion.
Forum: Plugins
In reply to: [WP Stripe] [Plugin: WP Stripe] shortcode processingThanks for the reply.
BTW when is “down the road?”Meantime it is an issue and I have modified the code for it to work properly. A trivial fix.