Hi there, we need API support and were wondering if you’re already working on that or if that’s something we could contribute to?
]]>Hi,
Excellent plugin.
I’m wondering how I can add the salutation the user picks on checkout to the email the user receives after checkout.
Dear {salutation} {last name},
Thank you for your order…..
in the customer-processing-order.php on line 28
<p><?php printf( esc_html__( ‘Dear %s,’, ‘woocommerce’ ), esc_html( $order->get_billing_last_name() ) ); ?></p>
How can I add the F4 salutation to this?
Hope you can help. Thanks in advance.
Kind regards,
Emile
Hello,
you made this wonderful snippet for me
add_filter('kadence_woomail_order_body_text', function($body_text, $order, $sent_to_admin, $plain_text, $email) {
return str_replace(
'{customer_salutation}',
\F4\WCSF\Core\Hooks::get_option_label(get_post_meta($order->get_id(), '_billing_salutation', true)),
$body_text
);
}, 10, 5);
unfortunately it is not working anymore, maybe Kadence changed something in their plugin…
]]>Hi.
After upgrading to WooCommerce 5.0 I get following error in the Admin Order Email – but not in other emails or anywhere on the page.
I am testing the emails with the “WooCommerce Email Test” plugin.
Warning: Invalid argument supplied for foreach() in /wp-content/plugins/f4-woocommerce-salutation-fields/modules/Core/Hooks.php on line 104
I’m wondering – is this a known bug… can you reproduce it, or is it only happening in my install?
Thanks.
All the best,
Sean.
Hello How do I get Mrs. to appear first in front of Mr. in the dropdown selection?
]]>I’m not that familiar with php, so hopefully you could help me out. Your plugin is working great in our checkout area, but i won’t show the salutation inside the order E-Mails. We’re using storefront as the theme and checkoutwc for the checkout.
The PHP Snippet wich is inside customer-on-hold-order.php is
<p><?php printf( esc_html__( ' {salutation} Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) ); ?></p>
But i won’t show the salutation. What exactly is am i doing wrong? Our goal is it to show it like this “Sehr geehrte Frau Nadine Muster”. Hope you could help me out
]]>I found the plugin MailPoet 3, that beside newsletter also can “style” the woocommerce emails. is this plugin compatible with this?
]]>Is there a way to use a shortcake like {salutation} in Woocommerce customer dashboard, to say Hello Mr. XY?
]]>The shortcode {salutation} is not working in emails (German formal) for me. Is there a way to fix this?
]]>Hi,
the salutation field is not shown neither in the checkout or customer account.
i work with the following versions:
– Checkout Manager for WooCommerce: Version 5.2.0
– WooCommerce: Version 4.3.3
– Germanized für WooCommerce: Version 3.1.12
– Germanized für WooCommerce Pro: Version 2.1.5
thanks for help and great feature. Would donate for this plug-in if it would work.
best,
Anina
I need to disable the default values that the plugin installs with.
How can I do that?
Thanks.
]]>HI,
Is it multilingual with WPML compatible?
reagrsd
]]>Hi,
how can I get the saluation in the email confirmation? I think it’s overriden from the theme so I have to add it manually.
Thanks
Hi,
I export my orders using WP All Export, and would like to include the Salutation field in my exported CSV file.
How can I request the field in a PHP function? For example:
function request_customer_title ($order) {
$customer_title = get_post_meta($order, ‘_salutation’, true);
return $customer_title;
}
Thanks for your help,
Ian
Hi,
getting this error in the shipping block on the orders page in the backend.
Warning: Illegal string offset ‘salutation’ in …/wp-content/plugins/f4-woocommerce-salutation-fields/Core/Hooks.php on line 256
Thanks
Rich
solved