stevygee1987
Forum Replies Created
-
No change, unfortunately. I’m using the free version.
Yes I do, but I just tried using the empty e-mail template without any merge tags, and this test also fails.
Yes, it is the primary ESP and the only one that’s active.
Hi Benjamin, I ran some tests on 1.4.0 today:
Sending a test campaign using PHP Mail works.
Using Custom SMTP, it doesn’t work. Again, when I send a test mail on the Integration settings screen, this provider does work. Just not in the test campaign screen.
This is on a live site, my web hosting provider is hetzner.com.
Sure, here you go:
These are my provider settings, PHP mail is off and custom SMTP is active: https://www.dropbox.com/scl/fi/ggwuxnzfcmxx1dqkdcxxo/Screenshot-2026-01-09-at-13.52.56.jpg?rlkey=cp1pr6974yjynz3sdwfbtp7pt&dl=0
Sending a test mail within campaign (not working):
MailerPress > New campaign
name: test
Subject: January update
Select an existing list
-> Next
Select default template
-> Next
-> Create Campaign
-> Preview & Send
Sending mode: Test
Enter e-mail
-> Send a test
Result:
Success message is shown.
Mothing in PHP error logs, no e-mail in inbox/spam folder.
Sending a test mail within provider settings (working):
MailerPress > Settings > Providers
Custom SMTP > (three dots) > Send a test email
Enter e-mail
-> Send
Result:
Success message is shown.
Test e-mail promptly arrives in my inbox.Just tried with the new version, no luck unfortunately.
Thanks for clearing that up! I can use this workaround right now and I think using arrays as input values could be a nice improvement for the plugin. Especially for many options, it would greatly simplify the mapping setup!
Let me provide a more complete example: https://pastebin.com/s2q5NgP0
I’m getting the values from a form in the frontend, containing multiple checkboxes named “nsv_our_work_type”, with “text” and “illustration” as the value, respectively. So the value in the order item meta would result in either “text”, “illustration” or “text\nillustration”.
I’m looking for the easiest way to set up the mapping. Should I just store the value in multiple order item metas, instead of using multiple values in one? My impression from the docs was that multiple choice value mapping should work, or does this only apply to the CF7/WPForms variants of the plugin?
Thank you for the quick response! I tried your code with the list field, and it works!
If this was documented somewhere, I must’ve missed it. Thanks for catching my mistake with the unnecessary loop.
How about checkboxes, though? Using the same code, and setting the mapping like this for the PDF liked above, should work right? But unfortunately, the fields are not getting filled.
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Undefined errorThanks for taking a look!
It was indeed a caching issue, or rather my WP Rocket settings. I’ve disabled “Delay JavaScript execution” completely and added the following lines to the exclusions for “Load JavaScript deferred”, which solved the issue:
www.paypal.com
wp-content/plugins/pymntpl-paypal-woocommerce/build/js/(.*).js
wp-content/plugins/pymntpl-paypal-woocommerce/build/legacy/(.*).jsThis is how I’m using the standard WooCommerce filter to add my class to cart line items:
function example_add_item_class( $classes ) {
$classes .= ' my-class';
return $classes;
}
add_filter( 'woocommerce_cart_item_class', 'example_add_item_class' );The expected result:
<div class="shopengine-table__body-item cart_item my-class">Instead it results in the following (invalid) markup:
<div class="shopengine-table__body-item" cart_item my-class">no I was not able to resolve this, since it’s an error in your code. Please forward this fix to one of your developers, it’s just a typo that causes this problem: https://www.diffchecker.com/YwJRLwAP/
Thanks!
Forum: Plugins
In reply to: [Meta Box] Cloneable File Advanced content not showing in admin in 5.10.0Hi @tanng
thank you for the quick fix, I confirm that it’s working now with version 5.10.1!
Forum: Plugins
In reply to: [Simple Download Monitor] Quick editThanks, this solved the issue!
Forum: Plugins
In reply to: [Simple Download Monitor] Quick editHello, I’ve tried again with Twenty Twenty One, all plugins disabled and SDM 3.9.14 active, but the issue still occurs.