23bryan
Forum Replies Created
-
Forum: Plugins
In reply to: [WPC Fly Cart for WooCommerce] Show cart icon on mobile view menuPerfect, it worked. I’ll drop you a review for excellent support. Thanks.
However, I would prefer to use your shopping cart icon in desktop/mobile view as it comprises of products total.
Do you have any ways to make it appear in the mobile view beside the hamburger menu?
Forum: Plugins
In reply to: [WPC Fly Cart for WooCommerce] Show cart icon on mobile view menuHi
the theme i am using is free version of page builder framework
Forum: Plugins
In reply to: [WPC Fly Cart for WooCommerce] Show cart icon on mobile view menuyes the hamburger menu is on mobile view of my website. I wish to put the cart menu icon beside the hamburger menu icon instead of inside the hamburger menu.
Forum: Plugins
In reply to: [WPC Fly Cart for WooCommerce] Show cart icon on mobile view menu- This reply was modified 4 years, 10 months ago by 23bryan.
Forum: Plugins
In reply to: [WPC Fly Cart for WooCommerce] How to show shipping charge on fly cartI need to know as well, the snippet didn’t work.
thanks
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Resizing Ajax imagesexcellent, thank you.
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Resizing Ajax imageshi,
If i am using Snippets plugin, how do i add the filters?
Hey Villa,
It’s working, just that it has very bad cache issue. I tried browsing in private browser and it’s working.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Shipping zones not workingHi abwaita,
thanks for your prompt response, I’ve troubleshot..
I am using this code to hide ship to a different address checkbox and input own heading text “Delivery information”
/** * Hide the 'Ship to different address' checkbox. */ /** * Hide the 'Ship to different address' checkbox / add a custom heading. * If want you can replace the text here. */ function njengah_js_force_shipping_address() { ?><script type="text/javascript"> var diffAddress = document.querySelector('#ship-to-different-address'); diffAddress.outerHTML = '<h2>Delivery information</h2><input type="checkbox" checked="checked" value="1" name="ship_to_different_address" class="hidden" style="display: none;" />'; </script><?php } add_action( 'wp_footer', 'njengah_js_force_shipping_address' ); /** * Force shipping address on checkout validation */ function njengah_force_posted_data_ship_to_different_address( $posted_data ) { $posted_data['ship_to_different_address'] = true; return $posted_data; } add_filter( 'woocommerce_checkout_posted_data', 'njengah_force_posted_data_ship_to_different_address' ); // Note that this overrides the 'Shipping Destination' option in the Woo settings add_filter( 'woocommerce_ship_to_different_address_checked', '__return_true' ); // If you have the possibility of virtual-only orders you may want to comment this out add_filter( 'woocommerce_cart_needs_shipping_address', '__return_true' ); // Order always has shipping (even with local pickup for example) add_filter( 'woocommerce_order_needs_shipping_address', '__return_true' );However, after enabling this snippet, woocommerce will charge shipping zone according to billing address postcode instead of shipping address postcode.
However, upon disabling this snippet, it worked again.
Is there a way to remove the “ship to a different address checkbox” while still forcing customers to key in their shipping address?
Hi ThemeHigh,
Thanks for your prompt response
I’ve just troubleshoot with my developer..
and realise once your plugin is activated, woocommerce will read the billing address postcode instead of shipping address postcode.
thanks, it worked.
Forum: Plugins
In reply to: [Quick Buy Now Button for WooCommerce] Bold the font “Buy Now”nvm found the css class.
thanks!