muvonigid
Forum Replies Created
-
I am also interested to have an option to disable the loading of these scripts.
We are experiencing the exact same error:
It seems to be with version 2.7.1 here: /wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-api-client/src/Endpoint/OrderEndpoint.php?on line?484
Please advice on how to fix.
Thanks!Here we go:
https://pasteboard.co/kRwRjrLqEDiD.pngYes, sure. Where to send the screenshots?
This. We are not able to translate the string “We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant.” which is send in the Mails to our customers.
Please fix this or give us a hint, where to disable this text in the mails.
Thanks!
Forum: Plugins
In reply to: [Contact Form 7] Dropdown field with dynamic valuesFound a solution from here:
https://www.ads-software.com/support/topic/how-to-auto-populate-checkboxes-and-radiobuttons-with-dynamic-values-from-db/And changed the logic to:
function dynamic_select_field_values ( $scanned_tag, $replace ) { if($scanned_tag['name'] != 'CF7_FIELD_NAME') return $scanned_tag; $rows = get_field('ACF_REPEATER_FIELD'); if (!$rows) return $scanned_tag; foreach($rows as $row) { $scanned_tag['raw_values'][] = $row['ACF_REPEATER_SUB_FIELD'] . '|' . $row['ACF_REPEATER_SUB_FIELD']; } $pipes = new WPCF7_Pipes($scanned_tag['raw_values']); $scanned_tag['values'] = $pipes->collect_befores(); $scanned_tag['pipes'] = $pipes; return $scanned_tag; } add_filter( 'wpcf7_form_tag', 'dynamic_select_field_values', 10, 2);
- This reply was modified 2 years, 10 months ago by muvonigid.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Popup on iPhonesHi Damian,
actually we wanted to use both:
10 seconds OR 60% scrolled down.The thing is, if a user opens the site, stays on top (is not scrolling) the Popup is displayed after 10 seconds. If the user scrolls (with the popup still open) the popup gets hidden and activated again after 60% scrolled down.
This may be an edge case but we expected it to use on or the other trigger. (Whichever may occur first).
Thanks anyway!
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Popup on iPhonesGot it fixed:
Triggers were “Show after 10 seconds” AND “when user scrolls down 60%”.When entering the site and just wait for 10 seconds, the popup shows.
If the user scrolls down afterwards, the popup is hidden and shown again when reaching 60% of the site.It seems as if the two triggers don’t work well together.
Forum: Plugins
In reply to: [Contact Form 7] Not sending mails since update to 5.4I got it!
It has something to do with this ticket:
https://core.trac.www.ads-software.com/ticket/52822Long story short:
Updated PHPMailer is faulty on some server configurations.For now i changed the content of /wp-includes/PHPMailer with the newest files from here: https://github.com/PHPMailer/PHPMailer/archive/refs/tags/v6.4.0.zip
That did it for me.
Thanks for your time.Forum: Plugins
In reply to: [Contact Form 7] Not sending mails since update to 5.4Hi, thanks for getting back.
Please see here: https://alt.s-e-p-a-g-o.de/unternehmen/kontakt/
(remove “-” from Domain)This is an old installation. Mail sending worked fine with WP prior 5.7 and CF7 prior 5.4.
– I then updated CF7 to 5.4 and it still worked(!)
– Then, after updating WP to 5.7, it is failing…
No caching, no honeypot, no antispambee, no smtp.Same error from JSON:
{ "into": "#wpcf7-f4-p21-o1", "status": "mail_failed", "message": "Es gab einen Fehler beim Versand. Bitte versuchen Sie es erneut.", "posted_data_hash": "40538ac772d68d205ff15eac56a8dec5", "errorInfo": "Could not instantiate mail function." }
Btw:
flamingo is saving the unsend mails with default values:
Subject: [your-subject]
To: [your-name] <[your-email]>
Don’t know if this bug is related to original issue. (no real send-to value?)Forum: Plugins
In reply to: [Contact Form Multi-Step Addon] Next Button brokenThis has something to do with the latest contact Form 5.4 Version.
Reverted back to a version before and it is working again.