Same issue here. I mange matomo via the cookie consent tool :
https://dsgvo-for-wp.com/dokumentation/
Here it state the tracking must be disabled. And I can't confederate it to track a thing without the option enable Ecommerce.
The Workaround has some problems if the purchase thank you URL is like:
/kasse/order-received/12345/?key=wc_order_y8OiHaluf6WcG
It will detect an abandon cart instate of a purchase. Maybe it is related to WooCommerce order not tracked #202
I could correct it with overriding the function maybe_track_order_complete in \wp-content\plugins\matomo\classes\WpMatomo\Ecommerce\Woocommerce.php with:
public function maybe_track_order_complete() { global $wp;
if ( function_exists( 'is_order_received_page' ) && is_order_received_page() ) {
$order_id = isset( $wp->query_vars['order-received'] ) ? $wp->query_vars['order-received'] : 0;
if($order_id == 0){
$tokens = explode('/', $_SERVER['REDIRECT_URL']);
if(isset($tokens ) && is_array($tokens ) && sizeof($tokens ) >1){
$order_id = $tokens[sizeof($tokens)-2];
}
}
if ( ! empty( $order_id ) && $order_id > 0 ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo $this->on_order( $order_id );
}
}
}
Best regards Collie-IT
Add possibility to size header logo in rem and vw
Add possibility to size header logo in rem and vw.
Dear developer,
the logo image size is only in px possible.
I would suggest to make vw, and rem possible.
Best regards Collie-IT
Corresponding to issue maybe the same in 2.0 Pages Canvas is only in px possible #143
Add posibility to use rem, vt at Page Canvas
Add possibility to select rem and vt as units at Page Canvas
Dear developer,
the page canvas is only in px possible. That is a bit stiff.
I would suggest to make vw, % and rem possible.
Best regards Collie-IT
Dear developers,
is it possible to add the possibility to select color gradients or background images instead of Colors? Me customer often request this feature.
Best regards Collie-IT