jmjr
Forum Replies Created
-
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Add new EmailsDo you mean the name of the template file?
The template’s name is customer-new-account-activation.php, which can be found under: woocommerce-germanized/templates/emails/I hope that helps.
JulianForum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Add new EmailsHi Ben,
I changed a few things in one of the Germanized templates and therefore copied it to my child theme. But with Email Designer activated it seems to be ignored.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Add new EmailsHi Ben,
would you consider adding the email templates of the very popular plugin “WooCommerce Germanized“?
This would be great, as my custom templates in the child theme seem to be ignored when your plugin is activated.Thanks,
JulianForum: Plugins
In reply to: [WP Super Cache] Known User detection brokenI deleted and reinstalled the plugin, after which it worked again. So maybe someone should still look into this issue.
I’m still using the snippet and it works fine (at least in our shop). Maybe you should try to use the functions.php instead of the plugin.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missing@dschingis I think those are exactly the webhooks the plugin is already using.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missingHi @dsmithweb,
it’s working, but the email that is send by Stripe does look more like spam, than a trustworthy notification by a professional payment service provider. Therefore I used the filter to switch the Stripe notification off and added the pre-notification info (although incomplete) to the order confirmation email.
Thanks, for me this code worked:
function disable_stripe_sepa_mandate_email( ) { return none; } add_filter( 'wc_stripe_sepa_mandate_notification', 'disable_stripe_sepa_mandate_email' );I still wish there could be a better solution to this problem π
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missingHi,
I saw in the changelog that now SEPA mandate emails are sent, but I couldn’t find further information in the documentation. And during testing no email was sent.
As I’m no developer I have not much knowledge about code, but in the files I couldn’t find an email function anywhere.Could you explain the new email functionality?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missingI personally would just prefer the Stripe Plugin to add a line to the order email and send out an own email for the renewals. This would make things like customization or translation much easier.
For now I use this code to add a prenotification line to the order received emailadd_action( 'woocommerce_email_before_order_table', 'add_order_email_instructions', 10, 2 ); function add_order_email_instructions( $order, $sent_to_admin ) { if ( ! $sent_to_admin ) { if ( 'stripe_sepa' == $order->payment_method ) { echo '<p><strong>Vorabinformation:</strong> Der fΓ€llige Betrag wird in zwei Tagen von deinem Konto abgebucht.</p>'; } } }Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missingHi,
I just had a new idea: Couldn’t you simply add a prenotification sentence to the order confirmation email (as done for example with the bank details, when using the bacs gateway) for the first payment?
For subscription renewals you could then send out a WC styled email with the prenotification as needed.This way the client isn’t bothered by strange looking emails from a third (Stripe) and the process is kept quite simple.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missingSo I will get in touch with Stripe.
An email that is sent via the WooCommerce itself using the WooCommerce Email Styling would be a great addition!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SEPA Mandate Email missingHi royho,
it seems to work fine, but maybe you could work a bit on the layout of this email? It doesn’t seem at all professional/trusthworthy
https://workupload.com/file/Mhg4htA
Thanks for the update!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SOFORT – Bank CountryThat would be great (Y)
No, as I’m still using a third party plugin for Stripe Sources and only updated the Stripe plugin on my staging shop.
I didn’t like the country selector and am waiting for the German translations (To which I already contributed)Thanks royho!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] SOFORT – Bank CountryHi royho,
couldn’t you set the country code to be the billing country?
In most cases this should make no problems, but on the other hand the selector seems kind of odd for a customer.Or could you add a switch to the backend for the admin to choose from both options ? This should actually be a good compromise π