imloic
Forum Replies Created
-
Forum: Plugins
In reply to: [GDPR] Disable Google AnalyticsThanks morpheus101
i try you script and remove GADWP.
_ga etc. is always load even if i desactivate in privacy preferencesForum: Plugins
In reply to: [GDPR] Disable Google Analyticsit can be a problem if I use the plugin: Google Analytics Dashboard for WP (GADWP) ?
Forum: Plugins
In reply to: [GDPR] Disable Google AnalyticsIt’s work with admin login ?
Forum: Plugins
In reply to: [GDPR] Cant get it to workHello,
Nothing changes. Copy and paste worked once.
Since then, nothing has worked. I tried”” etc.
I also tried this code: gdpr_request_form( $type);
Still nothing
Forum: Plugins
In reply to: [GDPR] Cant get it to workHello guys!
It’s not working for me too. Nothing happen.
I insert this shortcode on a page called GDDPR:
[gdpr_request_form type=”$type”]Maybe it’s preferable to make a video tutorial
Thanks for your work.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Adding additional field to MailChimpHello,
I have the same problem i don’t see the field ‘birthday’ in order to get birthday date (with date picker)
Here my code:
// Make birthday a date picker mm/dd field function ss_wc_add_checkout_field_datepicker() { if ( is_checkout() ) { $js = 'jQuery( "#birthday" ).css("width","125px").datepicker({ changeMonth: true, changeYear: true, yearRange:"-100:+0", dateFormat: "mm/dd" });'; // Check if WC 2.1+ if ( defined( 'WC_VERSION' ) && WC_VERSION ) { wc_enqueue_js( $js ); } else { global $woocommerce; $woocommerce->add_inline_js( $js ); } } } add_filter( 'wp_footer' , 'ss_wc_add_checkout_field_datepicker' ); // Save the birthday field with the order function ss_wc_save_birthday_field( $order_id ) { $birthday = isset( $_POST['birthday'] ) ? $_POST['birthday'] : null; update_post_meta( $order_id, 'birthday', $birthday ); } add_action( 'woocommerce_checkout_update_order_meta', 'ss_wc_save_birthday_field' ); // tie into the WooCommerce MailChimp 'ss_wc_mailchimp_subscribe_merge_tags' action filter to add the MailChimp merge tag for Birthday function ss_wc_send_birthday_field_to_mailchimp( $merge_tags, $order_id, $email ) { // retrieve the birthday from the order meta/custom fields $birthday = get_post_meta( $order_id, 'birthday', true ); // Add 'BIRTHDAY' merge variable to MailChimp call (change 'BIRTHDAY' to whatever your merge variable is called in MailChimp) $merge_tags['BIRTHDAY'] = $birthday; return $merge_tags; } add_filter( 'ss_wc_mailchimp_subscribe_merge_tags' , 'ss_wc_send_birthday_field_to_mailchimp', 10 , 3 );
Please help.