Mehul Kaklotar
Forum Replies Created
-
Forum: Plugins
In reply to: [Woo Custom Emails] Fatal ErrorHi @jfleming72,
We have released new version supporting latest WP and Woo updates. please check and test it.
Forum: Plugins
In reply to: [Woo Custom Emails] Plugin Stopped Working on Update to Woo 3.2.0@mikea1
I have pushed new plugin upgrade. Please let me know if it works for you. I can fix issues if anything is there.Forum: Plugins
In reply to: [Woo Custom Emails] Add table headingYou can add you table headings in your template as we can edit those heading in template itself.
Forum: Plugins
In reply to: [Woo Custom Emails] Not appearing in order actions like before@ultmod @vitorpereira
I have pushed new plugin upgrade. Please let me know if it works for you. I can fix issues if anything is there.Forum: Plugins
In reply to: [Woo Custom Emails] Does this work anymore?I have pushed new plugin upgrade. Please let me know if it works for you. I can fix issues if anything is there.
Hello @ycchang1006
You can find the settings page now here menu: WooCommerce -> Custom Emails
Forum: Reviews
In reply to: [Woo Custom Emails] Doesn’t work any moreAfter our conversation about the issue you were facing, it was not the issue with Woo Custom Email plugin. It was some other plugin, which was interfering with WordPress function
get_option
. So I believe it was not the issue about this plugin at all.Thanks.
Forum: Plugins
In reply to: [Woo Custom Emails] New email created, but not displayed in list of emailsI hope your issue is resolved now.
Forum: Plugins
In reply to: [Woo Custom Emails] Send new order email to customerForum: Plugins
In reply to: [Woo Custom Emails] New email created, but not displayed in list of emailsI am trying to investigate the issue. Let’s resolve this issue. You can email me your contact details(skype or hangout) on [email protected].
Forum: Plugins
In reply to: [Woo Custom Emails] Compatibility with WooCommerce 3.0.0 and 3.0.1Hi @josiah-s-carberry & @iamhere
I tested the plugin with new WC 3.0.3 and it is working fine for me. Can you debug on your end and know what could be the problem?
Thanks.
Forum: Plugins
In reply to: [Woo Custom Emails] send customer detailsHi @doofydoof86
Can you go over this support ticket? It has all the instruction on how you can add custom tags/shortcodes.
https://www.ads-software.com/support/topic/include-hooks-or-template-file/
Forum: Plugins
In reply to: [Woo Custom Emails] custom variables (tags)Hi @lpdesign
Can you go over this support ticket? It has all the instruction on how you can add custom tags/shortcodes.
https://www.ads-software.com/support/topic/include-hooks-or-template-file/
Forum: Plugins
In reply to: [Woo Custom Emails] Include hooks or template fileThat is a good suggestion to include in the release. I will try to add this feature in to next release.
Forum: Plugins
In reply to: [Woo Custom Emails] Include hooks or template fileadd_filter( 'wcemails_find_placeholders', 'wcemails_your_theme_find_formatted_billing_address' ); function wcemails_your_theme_find_formatted_billing_address( $find ) { $find[] = '{formatted_billing_address}'; return $find; } add_filter( 'wcemails_replace_placeholders', 'wcemails_your_theme_replace_formatted_billing_address', 10, 2 ); function wcemails_your_theme_replace_formatted_billing_address( $replace, $order ) { $formatted_billing_address = $order->get_formatted_billing_address(); $replace[] = $formatted_billing_address; return $replace; }
- This reply was modified 8 years, 1 month ago by Mehul Kaklotar.