alexio101
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] WCAG compatibility – Missing form labelHi @dnesscarkey ,
Perfect, thank you for your great work!
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] WCAG compatibility – Missing form labelHi,
Did you have any time to take a look at this?
Thanks
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] WCAG compatibility – Missing form labelBy clicking on the grey button “ΑΙΤΗΣΗ ΠΡΟΣΦΟΡΑΣ”
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] WCAG compatibility – Missing form labelHere’s a page you can check for the errors
Hi @alvinmuthui
Is there by any chance any update on this?
Kind Regards ??Thank you for the update.
I’ve contacted Quickcal support but so far, they havent been able to provide a fix.
Integrating with quickcal would be the best solution if that’s possible.Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Fatal error on form validationExactly ??
That made my day, thank you for the good energy! :))Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Fatal error on form validationHi,
Since the problem was in validation while your plugin was active, i disabled temporarily, did the form validation, re-enabled it and everything works great.
Thank you for looking into it.Forum: Reviews
In reply to: [Viva Payments - Viva Wallet WooCommerce Payment Gateway] Δεν λειτουργε?σωστ?Για ?ποιον ψ?χνει λ?ση, ?χει βγει δωρε?ν Plugin απο την viva wallet:
https://woocommerce.com/products/viva-wallet-for-woocommerce/Για ?ποιον ?λλο το χρειαστε?, β?ζει το παρακ?τω στο functions.php του child theme.
add_filter( 'woocommerce_payinstore_process_payment_order_status', 'change_payinstore_payment_order_status', 10, 2 ); function change_payinstore_payment_order_status( $order_status, $order ) { return 'wc-pending';
If someone else need it, im sending the code that works for billing phone. *You also need to enable PHONE in Audience fields and *|MERGE|* tags in your mailchimp audience list settings in your mailchimp account.
/** * This will send additional WooCommerce checkout fields to MailChimp. * * @return array */ add_filter( 'mc4wp_integration_woocommerce_data', function( $data, $order_id ) { $order = wc_get_order( $order_id ); // this sends the billing_phone field from WooCommerce to a Mailchimp field called "PHONE" $data[ 'PHONE' ] = $order->get_billing_phone(); return $data; }, 10, 2);
Thank you so much, it worked!!
The eshop only has guest checkout, so the phone number must be captured from the checkout form.
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] WCAG compatibility – Missing form labelworks great! Thanks
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] WCAG compatibility – Missing form labelHi ??
The tool is here:https://wave.webaim.org/
*sometimes it cannot check and you have to check through the chrome extension. https://wave.webaim.org/extension/If you scan a contact form page with WP Armour enabled, you will get the missing label error.
<span class="wpa_hidden_field" style="display:none;height:0;width:0;"> Missing form label <input type="text" name="pftdnb41" value="793836"> </span>
I think it’s an easy fix. You need to add a label tag before the input field.