joncon62
Forum Replies Created
-
Forum: Plugins
In reply to: [AIO Forms - Craft Complex Forms Easily] Multiple email addressesThat works if I hard code the email addresses in the ‘Send email to’ box of the form settings, but I want to dynamically change the email addresses on the frontend. I have linked a text field of the form to the ‘Send email to’ box, but it doesn’t work. Anything more than one email address defaults to the admin email address. Any ideas?
Forum: Plugins
In reply to: [AIO Forms - Craft Complex Forms Easily] Create custom postThat would be amazing! ??
Forum: Plugins
In reply to: [AIO Forms - Craft Complex Forms Easily] How to set a dropdown optionThank you, works perfectly!
Forum: Plugins
In reply to: [AIO Forms - Craft Complex Forms Easily] Set a field attributeThanks for your solution, that works and the attribute is preserved after hiding/showing the field.
I am writing my own extension to an event manager registration form. The form doesn’t have conditional logic, which I need for my clients, so I’m using your form to add that functionality. So far it looks like it will work well.
Thanks for your quick reply, yes that was my problem. All working now.
This is the code I’m using:
// Add wc-deleted order status to woocommerce add_filter( 'woocommerce_register_shop_order_post_statuses', 'bbloomer_register_custom_order_status' ); function bbloomer_register_custom_order_status( $order_statuses ) { // Status must start with "wc-"! $order_statuses['wc-deleted'] = array( 'label' => 'Deleted', 'public' => false, 'exclude_from_search' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop( 'Deleted <span class="count">(%s)</span>', 'Deleted <span class="count">(%s)</span>', 'woocommerce' ), ); return $order_statuses; } add_filter( 'wc_order_statuses', 'bbloomer_show_custom_order_status_single_order_dropdown' ); function bbloomer_show_custom_order_status_single_order_dropdown( $order_statuses ) { $order_statuses['wc-deleted'] = 'Deleted'; return $order_statuses; }
After rebooting my mac the problem went away. I’m leaving this thread here just in case anyone else experiences the same.
Thanks for your swift reply. I think waiting a month will be too long as my client needs something now, but I’ll keep you in mind for the future. Good luck with the plugin.
Ah! Thanks for that, I missed the custom field tab. All good now.
- This reply was modified 2 years, 1 month ago by joncon62.
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Configure Card payment boxesOK thanks, I’ll give it a go.
Forum: Plugins
In reply to: [SMTP for Amazon SES - YaySMTP] Sort in header not workingThis is the sort DOWN image: https://freeimage.host/i/H1gf3UG
This is the sort UP image: https://freeimage.host/i/H1gf2ls
Though the page reloads when I click the header and the arrow changes direction, the table doesn’t change.
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Run on localhost?Ah! I got it going now. All my products are digital so I have a snippet to remove unnecessary billing fields in the checkout, but I guess PayPal needs some of them – not quite figured out which, but it doesn’t error anymore.
Thanks for your help
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Run on localhost?At the top of that log it says
Webhook could not be configured during connect process. PayPal does not allow webhooks where the domain is localhost.
There are lots of other errors. When I set it up on a real host webhooks are set and it appears to run fine.
I also tried using localwp and it did set the webhooks but I got the original ‘Request is not well-formed’ error.
Is there a workaround to get it going on localhost?
Thanks for your reply. I realise what you suggest is one way to do it but this isn’t what my users want. They want an in-house easy-to-use solution without having to leave the website. It’s not a very difficult thing to do and I’ve already written the code to do this for a different event manager. I have been asked at least 4 times for this feature and lost customers as I hadn’t yet implemented it. There is definitely a need for this so maybe think about putting it on your roadmap.
Thanks for your suggestions. They all seem rather overkill for such a simple function. I am currently writing the code myself, but for a different Event Manager, and it’s not very difficult to do. I think you should consider putting it in your roadmap so I’ll add it to your ideas section. It would be another feature that sets you apart from the other Events plugins.
This feature and the ability to have customised registrations per event are two reasons stopping me moving over to your plugin.