Daniel
Forum Replies Created
-
These pages do not exist no. When you go to them they just redirect without the additional /page/2/ or whatever number..
Forum: Plugins
In reply to: [Geo Controller] Woocommerce customer GEO locationHi,
I have updated and cleared the cache etc. This still does not work unfortunately.
Forum: Plugins
In reply to: [Geo Controller] Woocommerce customer GEO locationHi,
I will try to explain.
If a customer visits the WooCommerce store from another country your shortcode for Flag and Currency work flawlessly on every page.
However with your plugin selected for GEOLOCATE on the WooCommerce settings it does not GEOLOCATE the customers location for checkout. I have tried both doing with or without cache etc as mentioned in your support documents.
Thanks
Hi, I hope this is okay to share. I received an update by request. This will fix it for anyone wanting the same as me:
—
by adding below function to current-theme/functions.php (or child-theme/functions.php)
add_filter( ‘woocommerce_order_get_items’, ‘woosb_exclude_bundles_from_order’, 10, 1 );
function woosb_exclude_bundles_from_order( $items ) {
foreach ( $items as $key => $item ) {
if ( $item->meta_exists( ‘_woosb_ids’ ) ) {
unset( $items[ $key ] );
}
}return $items;
}Thank you, would be great to include as I cannot use the plugin without it 🙁
Forum: Plugins
In reply to: [WooCommerce] Image displayI have done this,
It still does not display correctly.
Forum: Plugins
In reply to: [WooCommerce] Orders page incorrect displayHi iMazed, thank you for your response.
It looks as if the design of this page has changed anyway. Do you have an image of what it is meant to look like?
Thanks.