Wilson
Forum Replies Created
-
Forum: Plugins
In reply to: [OpenAI Tools for WordPress & WooCommerce] Doesn’t work -> UndefinedThank you for the feedback and sorry for the late reply.
The latest version of OpenAI Tools use the json_object for the returning. Please check it.
It never disappeared. WP Cron is always working because we have some other cron job there.
The final url is 404.
Tried with all plugin disabled except these 2, but still not working.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce app not working with my siteYou can try the WooCat app to confirm if the WooCommerce REST API works on your store.
It doesn’t need the JetPack plugins. And you can get the sales report and order notifications from multiple WooCommerce Stores.
And get products and review statistics of any WooCommerce stores quickly.Forum: Plugins
In reply to: [WooCommerce] Woocommerce app not working with my siteYou can try the WooCat app to confirm if the WooCommerce REST API works on your store.
It doesn’t need the JetPack plugins. And you can get the sales report and order notifications from multiple WooCommerce Stores.
And get products and review statistics of any WooCommerce stores quickly.Seems to find the solution.
function my_mail_filter($args) { if (isset($args['headers']) && ! is_array($args['headers'])) { //Check original header length if(strlen($args['headers']) == 0){ $existing_headers = $args['headers']; unset($args['headers']); $args['headers'][] = $existing_headers; $args['headers'][] = 'Content-Type: text/html; charset=UTF-8'; } } return $args; } add_filter('wp_mail', 'my_mail_filter'); add_filter( 'bdpwr_code_email_text', 'reset_password_email', 10, 4 ); function reset_password_email($text, $email, $code, $expiry){ xxxxxx }