alexkappel
Forum Replies Created
-
Forum: Plugins
In reply to: [Taxonomy Filter] PHP Warning – Please review and fixThanks. Error log is now calm ??
Hi!
I have done some debugging regarding this. We update the metafield mailchimp_woocommerce_is_subscribed with 0 or 1 and it saves on the order correctly in wp_postmeta on the order ID.
But I noticed in Mailchimp today that customers with 0 in this field were still synced to Mailchimp (and not as unsubscribed). [opt_in_status] in the log are saying 1.
So I did some digging in your code. I can see that you are listening to wp_usermeta when syncing and that you have a code adding mailchimp_woocommerce_is_subscribed to wp_usermeta based on the field value in the order. Correct?
BUT your code might be broken. I have checked orders with both 0 and 1 values and in wp_usermeta the field is totally empty, no value at all.
Please see: https://www.dropbox.com/s/ttujbj88kfbgyde/mailchimp-for-woocommerce-2-1-2.png?dl=0
- This reply was modified 6 years, 12 months ago by alexkappel.
- This reply was modified 6 years, 12 months ago by alexkappel.
- This reply was modified 6 years, 12 months ago by alexkappel.
Forum: Plugins
In reply to: [WooCommerce] Shipping taxes are recalculated after changing order status@nzecheru any luck on this one? We have kinda the same thing. Just wanted to follow up if you found a fix.
Forum: Plugins
In reply to: [WooCommerce] Why both in stock AND can be backorderedPlay around with this in your functions.php
Use the correct text domain. But I guess woocommerce is correct./*** Remove (can be backordered) from Stock status **/
add_filter( ‘gettext’, ‘theme_change_comment_field_names’, 20, 3 );
function theme_change_comment_field_names( $translated_text, $text, $domain ) {if ( is_singular() ) {
switch ( $translated_text ) {
case ‘(can be backordered)’ :
$translated_text = __( ‘In stock’, ‘woocommerce’ );
break;
}
}
return $translated_text;
}- This reply was modified 7 years, 1 month ago by alexkappel.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Sync stalls indefinitely17 600 orders has status completed in WC. NONE is probably synced since my list is empty in Mailchimp.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Sync stalls indefinitelyI have an ongoing ticket with Darren. Thanks!
I believe the API Sync and the plugin needs an overview. You really don’t know whats going on or if your store is hooked up or not. I’d like to go back to my stage env to do more testing but that does not seem to work. API/Plugin/MC gets confused or something.More info in the back-end whats online/in-sync. Ways to to unhook the line. Re-sync, force re-sync. Status bars, green/red lights or whatever. Takes to much time to create support tickets etc.
Thanks for developing for e-commerce Automation though!
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Sync stalls indefinitelyStill nothing. @room34josh did you manage to fix your problem?
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Sync stalls indefinitelySeems to have the same issue. 17 600 orders with status completed. Is that the information the plugin is trying to sync? In progress has been the status for 15 minutes now.
Some info from Status log.
### WordPress Environment ###
WC Version: 2.6.8
Log Directory Writable: ?
WP Version: 4.6.1
WP Multisite: –
WP Memory Limit: 1 GB
WP Debug Mode: ?
WP Cron: ?
Language: sv_SE### Server Environment ###
Server Info: nginx/1.10.0
PHP Version: 7.0.13-1+deb.sury.org~trusty+1
PHP Post Max Size: 100 MB
PHP Time Limit: -1
PHP Max Input Vars: 3000
cURL Version: 7.35.0
OpenSSL/1.0.1fSUHOSIN Installed: –
Max Upload Size: 100 MB
Default Timezone is UTC: ?
fsockopen/cURL: ?
SoapClient: ?
DOMDocument: ?
GZip: ?
Multibyte String: ?
Remote Post: ?
Remote Get: ?### Database ###
WC Database Version: 2.6.8
### API ###
API Enabled: ?
### Theme ###
Child Theme: ?
Parent Theme Name: Flatsome
Parent Theme Version: 2.8.5
WooCommerce Support: ?Commented out this whole function
public function adminReady()
{
/*$this->is_admin = current_user_can(‘administrator’);
if (get_option(‘mailchimp_woocommerce_plugin_do_activation_redirect’, false)) {
delete_option(‘mailchimp_woocommerce_plugin_do_activation_redirect’);
if (!isset($_GET[‘activate-multi’])) {
wp_redirect(“options-general.php?page=mailchimp-woocommerce”);
}
}*/
}AND as well
//$this->loader->add_action(‘admin_init’, $service, ‘adminReady’);
Fixed it.
Forum: Plugins
In reply to: [WC Cancel Order] How to Cancel Without Admin Approval? And…@jodhavishalsingh is it possible with the PRO Version?
https://wooexperts.com/product/wc-cancel-order-pro/Mail sent!
Solved, some manual tracking codes on thank you page that interfered and made a conflict.
Same here, not good.
30 minutes ago.I’ve tried to install it from scratch as well.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Event tracking in Google AnalyticsI found this:
https://www.itsabhik.com/woocommerce-google-analytics-integration-giude/And this:
https://xd3v.com/woocommerce-and-google-analytics-ecommerce-setup/Waiting for tomorrow to see results in GA. My main concern is ecommmerce tracking which isn’t working atm. Just regular visits and stuff.
Any more knowledge?
I’m in same situation. No Ecommerce tracking is working for me. I’ve tried to manuelly add the GA code and with the plugin. With the plugin I can’t even find it in the source code so I think it doesn’t even work when I check that box.