juliankidd
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Out of memory errors since 1.11.0I suspect I am having similar issues with the plugin. The regenerate feed and sync feed jobs were firing every few minutes and starting before the previous one finished. I have CPU overuse warnings and set up a real cron job every 30mins.
line 557:
// Edit order items table template defaults function sww_add_wc_order_email_images( $table, $order ) { ob_start(); $template = $plain_text ? 'emails/plain/email-order-items.php' : 'emails/email-order-items.php'; wc_get_template( $template, array( 'order' => $order, 'items' => $order->get_items(), 'show_download_links' => $show_download_links, 'show_sku' => true, 'show_purchase_note' => $show_purchase_note, 'show_image' => true, 'image_size' => array( 50, 50 ) ) ); return ob_get_clean(); } add_filter( 'woocommerce_email_order_items_table', 'sww_add_wc_order_email_images', 10, 2 );
How do i get images and SKU in customer/html emails only then?
functions.php issue. do you think you could have a look at the code? It’s pretty bastardised but a trained eye might help me faster than trial and error…
https://www.dropbox.com/s/ru6eg3c26g6nmod/functions-php.txt?dl=0
Looks like a theme issue on my end but i still get indented shipping address on theme “2015” and only woocommerce active, no other plugins. The ship to name is not indented but the address is.
Weird. I guess it’s a plugin or something in my functions.php… will test on test server.
No translation.
https://www.dropbox.com/s/uls8hcfra9sm6z9/Screen%20Shot%202016-02-01%20at%209.33.12%20am.JPG?dl=0
The indentation of shipping started before 2.5, not a huge issue but while we’re at it…
The missing quantity and indented item list started with 2.5 and continues with 2.5.1.
HTML files output fine. But i need plain text for my shippers to read…
Yep, nope. I reverted to only plugin templates from my overrides. This is what i get regardless of my template or plugin template (indented and missing titles):
ORDER NUMBER: 5725
K-Pump K-Air II 15PSI (#898918000164)
1
$39.00I also get partially indented shipping address… thoughts?
Sorry, I’m using plain text emails…
Forum: Plugins
In reply to: [WooCommerce] Slow/inconsistent site load times on WC 2.5After 2 days of digging, hosting company announced it was a server side issue, something to do with semaphores… Which took them another week to not fix. I have left that company.
Forum: Plugins
In reply to: [WooCommerce] session handling and W3TCUpdate: in the midst of searching for a solution my server had major connectivity issues. Seems to be back online and while offline, I did some digging. Even though i hade w3tc exclude cart from page cache, it was still browser caching with a max-age of 3600. i turned expires header off for html only and chose “cache with validation” rather than “cache with max-age”. so far this seems to be working but will test further. Thanks Mike for your help, it should be made known to add “woocommerce_sessions” to query stem to ignore if DB caching is used in W3TC.
Forum: Plugins
In reply to: [WooCommerce] session handling and W3TCThis did not happen prior to WC2.5, what has changed?
Forum: Plugins
In reply to: [WooCommerce] session handling and W3TCI thought Woocommerce had NOCACHE for cart and checkout pages built in, regardless of me using or adding it to NOCACHE in w3tc? Did the notice stay for you beyond “after the event”?
Forum: Plugins
In reply to: [WooCommerce] session handling and W3TCHi Mike,
Can I confirm what is excluded? the cart page from page cache, cookies, query stems? All i know it was working before. I am testing as we speak and will try to turn off all DB caching to test.
Forum: Plugins
In reply to: [WooCommerce] session handling and W3TCThanks for quick reply. Greenwatersports.com/shop is the domain, add a product and navigate back and forth to cart, does the message stay at the top. What would be causing this? (the minicart drop down at top right “visit shop” used to update to “secure checkout” after you added something to cart…) same issue?
Forum: Plugins
In reply to: [Yoast SEO] CDN sitemap image url rewriteThis appears to have worked. Added an array and a priority.
function wpseo_cdn_filter( $uri ) { return str_replace( array('https://xyz1.cloudfront.net', 'https://xyz.cloudfront.net'), 'https://mydomain.com', $uri ); } add_filter( 'wpseo_xml_sitemap_img_src', 'wpseo_cdn_filter', 10000, 1 );
Thought I’d post it for others.