Hasan Al Khaled
Forum Replies Created
-
plugin updated. issue resolved
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] tendered and change amount not showing@admin , anyone here for support?
Forum: Plugins
In reply to: [WooCommerce] Free shipping exclude itemsHi xue28,
Thank you so much for the response. This will help a lot.
- This reply was modified 1 year, 7 months ago by Hasan Al Khaled.
Forum: Plugins
In reply to: [Activity Log - Monitor & Record User Changes] Failed login@admin . anyone watching this thread?
Forum: Plugins
In reply to: [WooCommerce] how to show most selling products by categoryHi, thank you for response. it works.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Cashback notice after price@subratamal thank you so much. its working.
Forum: Plugins
In reply to: [Wallet for WooCommerce] How To Disable Cashback Notice of Frontend@subratamal wanted to hide notice from this page – baibai365.com
Forum: Plugins
In reply to: [Wallet for WooCommerce] How To Disable Cashback Notice of FrontendHi, I tried the given snippet but didn’t work for me. however, i can make display none which is not suitable way.
I have another query, how can i put notice AFTER the price in products grid?
Forum: Plugins
In reply to: [Yoast SEO] noindex issuehi devnihil, thanks for your response and effort. I appreciate it.
Forum: Plugins
In reply to: [Yoast SEO] noindex issueHi Maybellyne,
Thanks for your response. I was getting noindex error earlier. Now getting redirect error. Screenshot – https://snipboard.io/t7SMgO.jpg
While searching for noindex resolve issue, one article suggested that yoast puts noindex when homepage has searchbox. therefore added the second function to fix that.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Terawallet Balance usage conditionHi, just to update that first condition of putting wallet amount usage has been resolved.
add_filter('is_valid_payment_through_wallet', '__return_false'); add_filter('woo_wallet_partial_payment_amount', 'woo_wallet_partial_payment_amount_callback', 10); function woo_wallet_partial_payment_amount_callback($amount) { if (sizeof(wc()->cart->get_cart()) > 0) { $wallet_balance = woo_wallet()->wallet->get_wallet_balance(get_current_user_id(), 'edit'); $cart_total = get_woowallet_cart_total(); $partial_payment_amount = ($wallet_balance * 30) / 100; if($cart_total >= $partial_payment_amount){ $amount = $partial_payment_amount; } } return $amount; }
But the second condition of restricting wallet for specific product category is still not resolved
add_filter('woo_wallet_payment_is_available', 'woo_wallet_payment_is_available_callback'); if(!function_exists('woo_wallet_payment_is_available_callback')){ function woo_wallet_payment_is_available_callback($is_available){ $categories = array('cashback-products'); $has_category = false; // Loop through cart items foreach ( WC()->cart->get_cart() as $cart_item ) { // Check for product categories if ( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ) { $is_available = false; } return $is_available; } } }
- This reply was modified 2 years, 7 months ago by Hasan Al Khaled.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] How to display addon priceHi, just to update that I have found the bug, in customized theme source code for this plugin the name of the output file was misspelled. Resolved. Thank you for all your support.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] How to display addon priceHi Leanza, Thank you for your response. I have tried your solution and prices are showing. so probably from theme the view is filtered/hidden. any idea how to resolve?
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] How to display addon priceHi Andrea,
I have followed your steps and still the price of addon items are not showing – https://pizza-end.com/product/margherita/
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] How to display addon priceFront the official doc – https://docs.yithemes.com/yith-woocommerce-product-add-ons/add-ons/
I have highlighted a screenshot from this doc to show the addon price I wish to display – https://ibb.co/dfxhdd4