Two Filter Issue

I’ve noticed that on certain pages, two filters appear in the top right. One is styled properly (the bottom one), and the other isn’t. I’d like to remove the top one (which isn’t styled properly). Is there some CSS I can add to remove it? Here are some sample URL’s: https://bndlstech.com/shop/ https://bndlstech.com/blog/category/health-living/ Thanks! Answers: Thank … Read more

WooCommerce change Tax Class programmatically when Recalculating an existing Order

I’m hoping someone can’t point me to what I am overlooking. CIRCUMSTANCE: We have some unique business logic whereby a custom user meta field affects the appropriate tax class. We have three customer “types” (which is this user meta field, say ‘type_one’, ‘type_two’, ‘type_three’) with three corresponding custom Tax Classes (‘class_one’, ‘class_two’, ‘class_three’). When we … Read more

Woocommerce – Problem sorting and filtering products with different tax rates by price

Setup (wordpress and woo only; fresh install): Prices entered with tax: No, I will enter prices exclusive of tax Display prices in the shop: Including tax Display prices during cart and checkout: Including tax Tax Rates: Standard 23%, Reduced 5% Product 1: price 100, tax rate standard (23%), front end price 123 Product 2: price … Read more

Display Sales Quantity by product – Woocommerce

I need to display product sales quantity on my orders backoffice. Someone can give some help with this? I can´t find any solution for this.. I already have this: add_filter( 'manage_edit-shop_order_columns', 'admin_orders_list_add_column', 10, 1 ); function admin_orders_list_add_column( $columns ){ $columns['custom_column2'] = __( 'Quantidade', 'woocommerce' ); return $columns; } add_action( 'manage_shop_order_posts_custom_column' , 'admin_orders_list_column_content', 10, 2 ); … Read more