Istiaq Nirab
Forum Replies Created
-
Hi,
We’ve added Label position setting in v1.0.4
Thanks.
Unfortunately, there is not settings available for this. But you can do this by programmatically !!
add_action( 'woocommerce_single_product_summary', 'display_pre_order_notice', 7 ); function display_pre_order_notice() { $product = new \SpringDevs\PreOrder\Frontend\Product(); $product->put_product_txt(); }
Thanks.
There is no received feature in this plugin. But, we’ll add some additional management features later.
Now, you can do same thing Like Request Payment , Reject pre-orders by changing order status.
Change order-status Pending payment to get payment from customers.
Currently, Pre-order plugin only works with simple product.
Variable product support will be available on premium version only !
Pre-Order lists can be found on Admin & Frontend both.
In Frontend,
Customers can see their pre-order lists from WooCommerce’s Dashboard.
In Admin,
Currently at this time, Bulk edit feature isn’t available on this plugin.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips] charset serbian language latinSerbian fonts is not supported by default !!
You can add supported font-family via your child theme.
add_action('pips_invoice_template_html_header', 'pips_serbian_custom_font', 20); function pips_serbian_custom_font() { ?> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap" rel="stylesheet"> <style> body { font-family: 'Noto Sans', sans-serif; } </style> <?php }
Simply copy & paste this code on your child theme’s
functions.php
. I hope Serbian fonts will be displayed properly.- This reply was modified 2 years, 2 months ago by Istiaq Nirab.
To get the release date of your product.
$release_date = get_post_meta($product_id, "_preorder_product_release_date", true);
You need to format this date before display
$formatted_rels_date = date('F d, Y', strtotime($release_date));
- This reply was modified 2 years, 5 months ago by Istiaq Nirab.