ankitispace
Forum Replies Created
-
https://developers.google.com/search/docs/advanced/structured-data/faqpage
- This reply was modified 3 years, 3 months ago by ankitispace.
Forum: Plugins
In reply to: [WooCommerce] Apply Coupon AFTER taxesI don’t want product price inclusive tax…
alternatively, I added another code that works fine…
This can help others too…add_action( 'woocommerce_cart_calculate_fees','custom_shipping_tax_free', 10, 1 ); function custom_shipping_tax_free( $cart ) { global $woocommerce; if ( is_admin() && ! defined('DOING_AJAX') ) return; $payment_method_id = WC()->session->get('chosen_payment_method'); // For cash on delivery "COD" if ( $payment_method_id === 'cod' ) { $surcharge = - (array_sum($woocommerce->cart->taxes)) ; $cart->add_fee( __( 'Discount Tax', 'woocommerce'), $surcharge, false ); } } add_filter( 'woocommerce_cart_totals_get_fees_from_cart_taxes', 'exclude_cart_fees_taxes', 10, 3 ); function exclude_cart_fees_taxes( $taxes, $fee, $cart ) { return array(); }
- This reply was modified 3 years, 5 months ago by ankitispace.
Hello,
I did not get any response from youhello,
I did not get any response from you…There is also a display of wrong Recovered total amount in the Reports.
As you say an issue with tax happening here, let me explain “Wrong Recovered total amount”I recovered 2 orders, Due to the tax product price displaying wrong, base on the abandoned cart recovered order,
Recovered carts = 24.55 + 56.67 = 81.22 (total)Recovered carts Actual Product price (2 products in cart as per 1st Capture),
1st cart = 17.99*3 (Quantity) = 53.97
2nd cart = 17.99+7.99 = 25.98
both cart total = 79.95 (should be this, may due to tax issue not display this )The same abandoned cart recovered orders from “Woocomerce > Orders”
39.95 + 68 = 107.95Now Issue is in Report, Recovered order total displaying “111.82”
How is that calculated? Why does it display the Wrong total?Thank You
Hi,
I think some misunderstanding there, I know if the user email is not provided then it will take as a guest. but my issue is not this, My issue is if I click on member then only members (which have email) list should be displayed there. if I click on All Then only member & guest both customer list display. but in the plugin, I click on member/guest all customers are displaying. it should be filtered by customer type.
the issue abandoned cart data is not filtered by customer type member/guest…
Thank you
- This reply was modified 3 years, 7 months ago by ankitispace.
https://prnt.sc/1inozwq
Hope this will help you to better under standing…Thank you
Hello,
In Reports, the “Product” tab only showing the Abandoned products list. How can I get all recovered products lists, Quantity & Amounts?
Thank you
Waiting for your reply… haven’t heard from you…???
Waiting for your reply… haven’t heard from you
Hello,
I updated the plugin & tried again placing an order via abandoned email but the issue is not fixed yet… In reports, Recovered Order:0 displaying & in the products tab that abandoned product is also not display.
Thank you
Yes, I place orders from the abandoned cart email given button, the link redirects to checkout page then I placed the order successfully. Then after I check on reports recovered order is 0. I tried to change the order status-completed still the recovered order is 0.
Hi,
I also want to add First order text in invoice on order complete & tried above mentioned code. That’s works, but occurs a bug when same customer place order again on same day and I generate invoice on order complete on next day or after customer’s multiple order that welcome text not display. In above mentioned code orders counted of user count all orders. if that order count with order date range till that order date & time then may this bug can be fix.
How to count orders till currant that order date & time?
please help me.
ThanksHi,
I checked my site that JS errors occurs due to “WooThumbs – Awesome Product Imagery” plugin I test after deactivate that undefined error gone but pricing filter not work properly I insert range $111-$884 but still I see less then $111 products “https://snag.gy/n6UsIE.jpg”. Price range filter not filter price properly.Hi
https://pickybride.com/shop/save-the-date/
This is 1 of the link where I face issue.