Niloy
Forum Replies Created
-
did you use any plugin to edit the checkout form?
we have a hidden field for add preorder-date to the order. so make sure that field is working correctly.hello @rebloui,
the preorder options are showing on each variation and only for single product(s) these options are showing under the inventory tab.
– ThanksHi @sahuh ,
for “wire transfer” as a payment method you need to change the order status to ‘on-hold’ manually. then once you confirm that the order is paid ,you need to change the order status again to ‘pre-order’.
this plugin is working perfectly if you’re using online payment gateways instead of manual payment.
ThanksForum: Plugins
In reply to: [Pre-Orders for WooCommerce] Some orders marked complete prematurelyyou can this into functions.php which locate your theme/child theme
or you can read this article for more information https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] Some orders marked complete prematurelyHi @docpop ,
you can use this code snippet to change the status completed to be “processing”https://gist.github.com/niloyBrightVessel/db0f37d90e3a7f99e920450b5e1ce9b0
Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] How to generate a list of pre-ordered itemsHi @docpop ,
sorry, we don’t have any product counter export feature for preorder items.Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] Question regarding pre order paymentsHi @umayralom ,
the payment must need to be paid when customers are placing an order.
it shows the payment of £0.00 because most probably the customer has not paid the payment yet.Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] Email notification problemsHi @davethedon ,
Thanks for your query.the original WooCommerce emails are conflict with the preorder logic.
Hooks for sending emails during store events – After more testing, this can be removed if it doesn’t conflict with the logic.so, if you found that those hooks are not in conflict with preorder logic you can simply comment them. we will also test it and remove those lines if we found that not conflict.
ThanksForum: Plugins
In reply to: [Pre-Orders for WooCommerce] Email notification problemsHi @graficadora ,
thanks for letting us know about these issues.
i will check them and let you know the update.
btw, the last point Pre-order admin email is not working. is only available for the Pro version.Hi @stardrop , this issue is fixed in version 1.1.3
Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] Block preorder not workingHi @graficadora ,
this issue is fixed in version 1.1.3
thank youForum: Plugins
In reply to: [Pre-Orders for WooCommerce] Remove preorder date fieldHi @jamieps ,
Thanks to you for using our plugin ??
sorry, this plugin doesn’t have an option to remove/disable the preorder date feature from the backend. in your case, you can modify the plugin code and hide the date picker (from the checkout) by using CSS code so the date will not show the customer’s backend along with shop frontend.Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] Block preorder not workingHi @graficadora ,
thanks for letting us know about this issue. we’ll be working on it and release a patch very soon.Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] ScreenshotsHi ,
yes, we have screenshots and you will find them below the plugin page.
we don’t have any notification system like that but visitors can see the add to cart button replace with ‘preorder text’ so visitors will know that is a preorder product.
ThanksForum: Plugins
In reply to: [Pre-Orders for WooCommerce] Auto-changed of StatusHi @wpressnone ,
here is the screenshot https://prnt.sc/wiz74v
btw, you can use this snippet below for overriding the statusadd_action( 'woocommerce_order_status_changed', 'bv_preorder_to_on_hold', 99, 3 ); function bv_preorder_to_on_hold( $order_id, $old_status, $new_status ) { $order = wc_get_order( $order_id ); if ( $new_status == "pre-ordered" ) { $order->update_status('on-hold'); } }