93bjones
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] Creating Stores via APIHi,
Thanks for your advice. Here is the current updatepostmeta when adding via API. Could you assist with incorportating that function to this by any chance?
function add_store(\WP_Post $post, $request, $creating) { $metas = $request->get_param("meta"); if (is_array($metas)) { foreach ($metas as $name => $value) { update_post_meta($post->ID, $name, $value); $newpostdata['status'] = 'draft'; wp_update_post($post->ID, $newpostdata, true); } } } add_action("rest_insert_wpsl_stores", "add_store", 20, 3);
Forum: Plugins
In reply to: [WP Store Locator] Creating Stores via APIHi,
Thanks for your reply. We create new Store posts by API which is feeding from our external database of active stores. with the address, and details. The action that updates the long and lat when manually saving works fine, but this action does not trigger when creating the post by API..
It means we currently have to open each Store created by the API and hit “Update”, then it shows up in the map and long/lat fields are completed.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order Status ChangePressing the PDF icon instantly after changes works fine. It’s just the email PDF attachment.
2 minutes later resending the Email notification it works fine.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order Status ChangePerhaps can we add a 2 minute delay before sending out the emails?
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] WP ALL IMPORT AUTOMATIONGot it. So you dont have code snippet to go in WP All Import editor?
We want to run import automatically on a cron schedule, the CSV upload feature cannot be automated like this ??
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] WP ALL IMPORT AUTOMATIONThanks, we import a CSV via WP All Import I tried adding array but couldn’t get it to display the tracking number correctly.
Forum: Plugins
In reply to: [Afterpay Gateway for WooCommerce] WordPress error log: wc_doing_it_wronghi
I also have this issue and my AfterPay order line is empty but order has gone through successfully!!! i need this issue resolved ASAP.
Forum: Plugins
In reply to: [Opening Hours] Caching compatibilityThanks that would be very very helpful
Forum: Plugins
In reply to: [Opening Hours] Caching compatibilityWe are using W3 Total Cache