evensismedia
Forum Replies Created
-
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Compliaz X YITH POSGreat solution by Yith to add these lines to functions.php:
/** * Filter post types for cookiewarning * It’s too early to use global $post or url_to_postid(), so we do a simple text comparison * * @param int $cookiewarning_required * * @return bool */function cmplz_my_filter_site_needs_cookiewarning( $cookiewarning_required) { $url = is_ssl() ? "https" : "http"; $url .= "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; //don't show cookie banner on page where the URL contains the parameter "shop" if ( strpos( $url, 'pos' ) !== false ) { $cookiewarning_required = false; define('CMPLZ_DO_NOT_BLOCK', true); } return $cookiewarning_required; } add_filter( 'cmplz_site_needs_cookiewarning', 'cmplz_my_filter_site_needs_cookiewarning' );
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Compliaz X YITH POSWe are also facing this issue.
Could anyone please provide the solution here?Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Only transactional emailsHi Ryan,
Sorry in the meantime our site was hacked, but it has been cleaned again.
I have tuned on DEBUG logs and will wait for some new entries to send to you soon.
Regards,
VincentHello Ryan,
I also have the problem that my customers have marked the optin field at checkout, but they are not subscribed in Mailchimp.
I have the latest 2.4.1 version of this plugin. What is the solution for this issue?
Regards,
VincentForum: Plugins
In reply to: [WordPress MU Domain Mapping] PHP NoticeSame issue here:
Notice: Undefined index: action in /nas/content/live/***/wp-content/plugins/wordpress-mu-domain-mapping/domain_mapping.php on line 632Does anyone now how to solve this?
I don’t understand because in WordPress/Woocommerce itself all kind of characters show up, from European to Japanese. What is the reason that this plugin cannot handle it?
It would be great if it could work the same as the Woocommerce system, so if our Japanese clients fill out their address in Japanese that shows up in the invoice and packing list too. Not only Japanese, because we have worldwide clients.