fzoid
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Products inventory not being removed after saleThe plugin that caused the issue is Ultimate Order Combination. So remove that plugin worked. Now I have the fix the issues that came up when removing the plugins.
Forum: Plugins
In reply to: [WooCommerce] Products inventory not being removed after saleAny order placed, no matter what the payment method or anything else, the inventory is not being removed after they the products are sold. I have to remove the titles individually after they are sold. This started on Monday and continues to this day.
One of the Snippets is called “Remove Sold Out” here is the code.
add_action( ‘pre_get_posts’, ‘iconic_hide_out_of_stock_products’ );
function iconic_hide_out_of_stock_products( $q ) {
if ( ! $q->is_main_query() || is_admin() ) { return; } if ( $outofstock_term = get_term_by( 'name', 'outofstock', 'product_visibility' ) ) { $tax_query = (array) $q->get('tax_query'); $tax_query[] = array( 'taxonomy' => 'product_visibility', 'field' => 'term_taxonomy_id', 'terms' => array( $outofstock_term->term_taxonomy_id ), 'operator' => 'NOT IN' ); $q->set( 'tax_query', $tax_query ); } remove_action( 'pre_get_posts', 'iconic_hide_out_of_stock_products' );
}
The other Snippets are Hide Categories, Remove Menu, Email tracking number. If you need the code for any of these let me know.
Forum: Plugins
In reply to: [WooCommerce] Products inventory not being removed after saleNo Fatal error logs under WooCommerce > Status > Logs
Forum: Plugins
In reply to: [WooCommerce] Products inventory not being removed after saleI haven’t heard back on this any answer to the problem?
Forum: Plugins
In reply to: [WooCommerce] Products inventory not being removed after saleThis is all products are not being removed after they sell and most products
I only have one copy of.
Forum: Plugins
In reply to: [WooCommerce] Products inventory not being removed after saleI was able to fix the issue thank for your help.
Below is a link of pic of what the Zones I deleted looks like. One of the countries I did delete but didn’t want to was Australia. The only way I was able to figure out how to bring was to bring all the countries back which is not not ideal.
After going to Get support tab what do I do? Doesn’t seem like you can be contacted by email from this link.
The package was sent out via USPS. When I got the packaged mailed back to me it had a sticker with vague note “Return to Sender Postage does not meet regulations” I called USPS talked to 4 different people and the last person told me it was because the customs number was used 2 years ago. So what can I do about this?
Forum: Plugins
In reply to: [WooCommerce] Cart issue with having only one copy of each item I get inLet me try and explain this better. Most products I only have 1 copy of each product. If a customer adds an item to their cart when that happens I don’t want anyone else to be able to add the same item to their cart. I want it to hold for them until they checkout or it goes back for sale if they abandoned their cart . A second person seems to be able to add the same item to their cart and if they checkout first they get the item the other person gets a error message. Customers are complaining.
Simple products is set up correctly.
Forum: Plugins
In reply to: [WooCommerce] Cart issue with having only one copy of each item I get inI do not have back ordering set yet I still have this issue.
Forum: Plugins
In reply to: [WooCommerce] Cart issue with having only one copy of each item I get inHow do I check if I have back ordering set?
Forum: Plugins
In reply to: [WooCommerce] Cart issue with having only one copy of each item I get inI am managing inventory and most items I get in I only have one copy of some of these titles I get back in stock but most times it will be only one copy.
This worked perfect Thanks.