Backorder extension
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page pleaseIf you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
Quote from anatsia on April 21, 2020, 09:35Hi!
Does premium extension “Exclude backordereded products” hide products that can be backordered AND stock amount is smaller than one? If it does, is it possible to test it with trial period before payment? Thanks.
Hi!
Does premium extension “Exclude backordereded products” hide products that can be backordered AND stock amount is smaller than one? If it does, is it possible to test it with trial period before payment? Thanks.
Quote from Pablo Borysenco on April 21, 2020, 13:18Hello
“Exclude backordereded products” hide products that can be backordered - No matter how many products are in stock.
To exclude "out of stock" products - https://products-filter.com/extencion/in-stock-checkbox/
is it possible to test it with trial period before payment? - Unfortunately no
Hello
“Exclude backordereded products” hide products that can be backordered - No matter how many products are in stock.
To exclude "out of stock" products - https://products-filter.com/extencion/in-stock-checkbox/
is it possible to test it with trial period before payment? - Unfortunately no
Quote from anatsia on April 22, 2020, 09:19Hi,
to be more precise, this extension does not check if the product status is 'onbackorder' in the database, it only checks that backorders are allowed for the product in product properties?
So I can't filter out products that can be backordered but stock amount is less than one with this plugin?
Hi,
to be more precise, this extension does not check if the product status is 'onbackorder' in the database, it only checks that backorders are allowed for the product in product properties?
So I can't filter out products that can be backordered but stock amount is less than one with this plugin?
Quote from Pablo Borysenco on April 22, 2020, 12:35Hello
Each product has stock status instock, onbackorder or outofstock. it is stored in the database. Woocommerce functionality assigns this data.
My filter searches for products by data in the data database
Hello
Each product has stock status instock, onbackorder or outofstock. it is stored in the database. Woocommerce functionality assigns this data.
My filter searches for products by data in the data database
Quote from anatsia on April 23, 2020, 07:15One more example, if I have two products and database values are:
Product 1: _backorders: yes, _stock_status: onbackorder
Product 2: _backorders: yes, _stock_status: instock
Does “Exclude backordereded products” extension filter out only product 1 or both?
One more example, if I have two products and database values are:
Product 1: _backorders: yes, _stock_status: onbackorder
Product 2: _backorders: yes, _stock_status: instock
Does “Exclude backordereded products” extension filter out only product 1 or both?
Quote from Pablo Borysenco on April 23, 2020, 14:02Hello
the filter will find a product that has _stock_status: onbackorder and exclude it from the product list
In this case: only product 1
Hello
the filter will find a product that has _stock_status: onbackorder and exclude it from the product list
In this case: only product 1
Quote from Pablo Borysenco on April 24, 2020, 13:30Hello
Welcome;)
Hello
Welcome;)
Quote from anatsia on May 12, 2020, 09:29Hi again. I wanted to change the text next to backorder checkbox and managed to do that by copying woof.php file under theme folder and editing it (found instructions somewhere). Anyway after filtering there is this text "Exclude On backorder" on top of product listing where all used filters are listed. Is it possible to customize that text too to what I want like I did with the checkbox label?
Hi again. I wanted to change the text next to backorder checkbox and managed to do that by copying woof.php file under theme folder and editing it (found instructions somewhere). Anyway after filtering there is this text"Exclude On backorder" on top of product listing where all used filters are listed. Is it possible to customize that text too to what I want like I did with the checkbox label?
Quote from Pablo Borysenco on May 12, 2020, 15:59Hello
Read this please - https://products-filter.com/hook/woof_ext_custom_title_xxx/
In file -wp-content\plugins\woocommerce-products-filter\ext\by_backorder\index.php - https://c2n.me/47txDQ4.png
Hello
Read this please - https://products-filter.com/hook/woof_ext_custom_title_xxx/
In file -wp-content\plugins\woocommerce-products-filter\ext\by_backorder\index.php - https://c2n.me/47txDQ4.png
Quote from anatsia on May 13, 2020, 06:03Hi,
so the hook changes only the checkbox text but for the active filter text I have to edit that index.php file? I have to check/edit that everytime plugin is updated? Thanks!
Hi,
so the hook changes only the checkbox text but for the active filter text I have to edit that index.php file? I have to check/edit that everytime plugin is updated? Thanks!
Quote from Pablo Borysenco on May 13, 2020, 13:13Hello
as you see this js variable. You can change this variable in any file.
Example:
add_action('wp_head',function(){
<script ENGINE="text/javascript">
woof_lang_custom.backorder = "<?php _e('Any text', 'woocommerce-products-filter') ?>";
</script>}, 9999);
Hello
as you see this js variable. You can change this variable in any file.
Example:
add_action('wp_head',function(){
<script ENGINE="text/javascript">
woof_lang_custom.backorder ="<?php _e('Any text', 'woocommerce-products-filter') ?>";
</script>
}, 9999);