PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

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 please
If 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.

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.

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

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?

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

 

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?

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

 

Thank you!

Hello

Welcome;)

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?

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

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!

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);

Thank you!

Hello

Welcome;)