Hesham Saad
Forum Replies Created
-
I have figured it out and here are the solution and it working for me
/** * Modifies the price displayed in the mini cart for a WooCommerce cart item. * * @param string $price The original price of the cart item. * @param array $cart_item The cart item data. * @param string $cart_item_key The cart item key. * @return string The modified price to be displayed in the mini cart. */ function wcdp_modify_mini_cart_product_price($price, $cart_item, $cart_item_key) { if (isset($cart_item['wcdp_donation_amount'])) { $donation_amount = $cart_item['wcdp_donation_amount']; $price = wc_price($donation_amount); } return $price; } add_filter('woocommerce_cart_item_price', 'wcdp_modify_mini_cart_product_price', 100, 3);Forum: Plugins
In reply to: [YITH WooCommerce Affiliates] Change the payment emailI have figured it out and it all is working great except the registration form send an error message when the user type his account name instead of Email
so how to disable the email checking filter on the registration form
Working great thanks
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Hide tax amountHello @kluver Thanks for your reply
I have tested your code but it didn’t work too.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Hide tax amountHello, Thanks for your reply
I have added the code on my child theme but it didn’t work.please check the screenshot https://share.getcloudapp.com/RBulrR9P
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Hide tax amountI am sorry for delay “value added tax”
Thanks
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Hide tax amounthttps://ibb.co/album/0jkVRP Here are the TAX settings
- This reply was modified 4 years, 11 months ago by Hesham Saad.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Hide tax amountThanks for your reply,
All prices include 14% TAX, So on the invoice it showing that the price include xx TAX name, So what I need is to only hide the TAX amount
Thanks