ctuxboy
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] ReCalculate product price Incl. VAT -> excl. VATHi Con,
I’m very happy with your answer en useful info.
Normally i export the database in phpmyadmin, but the backup plugin you recommended me is faster.
I try this plugins.
Regards,
Christophe(sorry for my poor english)
Forum: Plugins
In reply to: [WooCommerce] ReCalculate product price Incl. VAT -> excl. VATHi Con,
It is not to late π
I’m very happy with your answer en uselful info.Normally i export the database in phpmyadmin, but the backup plugin you recommend me is faster.
I try this plugins.
Regards,
Christophe(sorry for my poor english)
Forum: Fixing WordPress
In reply to: Woocommerce excl. VATOk,
I do it!Regards,
ChristopheForum: Plugins
In reply to: [WooCommerce] Show Free shipping AND Local PickupHello,
I found a code snippet on this website:
http://businessbloomer.com/woocommerce-hide-shipping-options-free-shipping-available/This solution works perfect for the webshop.
Regards,
ChristopheForum: Plugins
In reply to: [WooCommerce] Show Free shipping AND Local PickupHi,
Very strange problem.
These are the settings in WC:
Zone Belgium -> Flat rate, Free shipping (>100β¬), Local Pickup
Zone Nederland -> Flat rate, Local Pickup
Rest of the world -> Local Pickup
See screenshotWithout snippet:
Buy products <100β¬, it shows Flat Rate and Local Pickup (GOOD!)
Buy products >100β¬, it shows Flat Rate, Free Shipping and Local Pickup (NOT GOOD! i want remove Flat Rate!)With the code snippet:
function my_hide_shipping_when_free_is_available( $rates ) { $free = array(); foreach ( $rates as $rate_id => $rate ) { if ( 'free_shipping' === $rate->method_id ) { $free[ $rate_id ] = $rate; break; } } return ! empty( $free ) ? $free : $rates; } add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );If i buy products <100β¬, it shows: Flat Rate and Local Pickup (GOOD!)
If i buy products >100β¬, it shows ONLY Free shipping (NOT GOOD! Don’t show Local Pickup)With the code snippet:
function my_hide_shipping_when_free_is_available( $rates ) { $free = array(); foreach ( $rates as $rate_id => $rate ) { if ( 'free_shipping' === $rate->method_id || 'local_pickup' === $rate->method_id ) { $free[ $rate_id ] = $rate; continue; } } return ! empty( $free ) ? $free : $rates; } add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );Buy products <100β¬ shows ONLY Local Pickup (NOT GOOD!)
Buy products >100β¬ shows Free Shipping and Local Pickup(GOOD!)The webshop:https://lolotte.be/
Hope you can help me what i do wrong :-/
Regards,
ChristopheForum: Plugins
In reply to: [WooCommerce] Some products only pickupHi Caleb,
Ok, i try customize the code snippet.
Thanks for the links.
Regards,
ChristopheForum: Plugins
In reply to: [WooCommerce] Show Free shipping AND Local PickupHi Mike,
Thanks for the answer.
Update: Now it only shows ‘Local Pickup’.
I want that it shows ‘Free Shipping’ and ‘Local Pickup’, when the cart >100β¬Regards,
ChristopheForum: Plugins
In reply to: [WooCommerce] Hide shipping rates when free shipping is availableI have the same problem!
Forum: Hacks
In reply to: List custom taxonomyHi, @bcworkz,
Thanks for the advice. I change the code, but this was not the solution.
I found the problemThe taxonomy name in this case is taxonomy
register_taxonomy( 'taxonomy', array( 'post' ), $args );Then changing the name geboortelijst in taxonomy
$terms = get_terms( array( 'taxonomy' => 'taxonomy', 'hide_empty' => false, ) );Now it works!!!
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Datepicker: Show calendar when page loadI follow the steps in this topic:
https://wordpress.org/support/topic/how-to-add-jquery-datepickerYou see the result on this page:
http://lecouver.be/nl/reserveer-online/Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Datepicker: Show calendar when page loadHi,
I don’t find a solution to this. The problem with CF7 is that the datepacker works goodi Chrome, but not in other browsers (for the moment).
But i do it with an alternative solution. I’m adding the original datepicker from jQuery:
https://wordpress.org/support/topic/how-to-add-jquery-datepickerAnd this is compatible with the most browsers.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Customize wishlist template titleHi,
Thank you very mutch!!
THIS WORKS PERFECT!!!
Regards,
ChristopheForum: Plugins
In reply to: [WooCommerce] Remove WC My Account navigation linksVery useful blogpost.
Thank you for this info Mike.Forum: Plugins
In reply to: [WooCommerce] Remove WC My Account navigation linksHi okay.
I understand why adding this nav-links, but my layout is a full width-layout, and this works very useful for my case.
This nav-links are new in the latest WC version?
Forum: Plugins
In reply to: [WooCommerce] Remove WC My Account navigation linksIt broke the webpage layout.