hakkow
Forum Replies Created
-
Same here.. It’s unclear how to get ecommerce tracking working (or any tracking for that matter..)
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Sync is not starting@ryanhungate, thanks for your response.
I do not have these plugins installed.I do notice the coupons did sync, it’s just the orders that won’t sync..
Forum: Plugins
In reply to: [StranoWeb Ajax Login] Page refreshing on authnticationHi Beeky,
You can find it on staging.kattenveertjes.nl. The pop-up is triggered by the icon pub the top right.
Forum: Plugins
In reply to: [Elementor Element Condition] Conditions not working for sectionNice! Thanks for the great plugin!
Forum: Plugins
In reply to: [Elementor Element Condition] Conditions not working for sectionI was able to fix this by adding the following to controls.php:
add_action( 'elementor/frontend/element/before_render', function ( \Elementor\Element_Base $element ) { $settings = $element->get_active_settings(); if ( !isset($settings['element_condition']) || $settings['element_condition']=='' ) return $element; if ( elecond_parse_condition($settings['element_condition']) ) { return; }else{ $element->add_render_attribute( '_wrapper', [ 'class' => 'hide-me'] ); } } );
And added a hide-me to the css containing display:none;
Hi DOTonPAPER, thanks for your reply.
Unfortunately this does not work.. I’ve got it running here:https://berberesahara.immerse.nl/boeken/?check_in=2018-03-01&check_out=2018-03-10
I was a little impatient, so I dug into the code myself. I found that the reason for this behavior was due to WPML.
WPML creates a different product ID for a translation. So when a translated product is added to the cart, it could be a different ID even though it’s the same product.
So here’s what I did: (please note my installation has 1 translation beside the main language. This might not work for multiple translations)
In the coupon_is_valid function in wjecf-coupon-extensions.php, I’ve added a check for the translation IDif ( ! in_array( $product_id, $cart_item_ids ) && ! in_array( $this->lang_category_id($product_id), $cart_item_ids ) ) { return false; }
So it only returns false if the original ID AND the translation ID is not in the cart.
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Compatibility WC 2.3.7Oh nevermind, I’ve found them under Woocommerce settings -> Products -> Display
Thanks for that meelker! I was indeed running the Coming Soon plugin. Deactivated it now, i wasn’t using it anymore anyways.
Thanks!
Forum: Fixing WordPress
In reply to: Redirecting old blog urls to new WP blogOkay, thank for the reply.
I’ll try to edit the index.php, that would be the best option then.I tried setting the permalinks to use ‘Post name’, but then my page breaks. I get 404’s on every link I click on my webpage.