koivunahka
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Author Box] Appearance – Customize and widgets no workingProblem game, when I update Beautiful Cookie Consent Banner. But nothing helps. Even if I delete the plugins and download them again. Mystery..
Disable these (woo settings): low-stock notifications and out-of-stock notifications.
Disable: Enable low-stock notifications. Check to receive an email when stock is low. The low stock threshold can either be set globally (see point 6) or per product.
Disable: Enable out-of-stock notifications. Check to receive an email when a product is considered out of stock, meaning that additional orders are not allowed (unless backorders are allowed) and the product may not appear in the WooCommerce catalog, depending on the setting for point 8. The out-of-stock threshold can only be set globally (see point 7). https://www.wpallimport.com/woocommerce-inventory-management/
Forum: Plugins
In reply to: [WooCommerce] Order search not workingSolvet:
add_action ( ‘pre_get_posts’, ‘hide_out_of_stock_in_search’) ;
function hide_out_of_stock_in_search ($query){
if ( is_admin() ) {
return;
}
if( $query->is_search() && $query->is_main_query() && ‘product’ === $query->get( ‘post_type’ ) ){
$query->set( ‘meta_key’, ‘_stock_status’ );
$query->set( ‘meta_value’, ‘instock’ );
}
}Forum: Themes and Templates
In reply to: [Storefront] Main page “Best Selling Products” mobile wiewMaybe is best: “All product listing”.
I have code, but that working only “search product”:
.site-main ul.products li.product { width: 46.411765%; float: left; margin-right: 5.8823529412%; } .site-main ul.products li.product:nth-of-type(2n) { margin-right: 0; } @media (min-width: 768px) { .site-main ul.products li.product:nth-of-type(2n) { margin-right: 5.8823529412%; } }
Yes I already that: https://github.com/woocommerce/woocommerce/pull/14294/commits/3fe7df65150ef6974a7849009a85ed2c146bf0ec
How I can use that?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce sort by price problemI have same problem. “sort by price” box is missing when I use “advance search”.
Check this: https://github.com/woocommerce/woocommerce/issues/14292
Forum: Plugins
In reply to: [WooCommerce] “Sort by menu” is not visible with new woocommerce 3.1.0Do you fixt that problem in next update? What are you think. That is huge problem, because my site works only “advance search”.
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] stocklist with letter?Its working now. Thanks a lot!