Title: kw11's Replies | WordPress.org

---

# kw11

  [  ](https://wordpress.org/support/users/kw11/)

 *   [Profile](https://wordpress.org/support/users/kw11/)
 *   [Topics Started](https://wordpress.org/support/users/kw11/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kw11/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kw11/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kw11/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kw11/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kw11/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/kw11/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/kw11/replies/page/3/?output_format=md) [→](https://wordpress.org/support/users/kw11/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [WooCommerce Square] Plugin no longer working with older versions of Safari](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/#post-16694223)
 * Square and their merchants, what a shame
   Your faulty software, you’re to blameOur
   profits suffer, as you sit idly byIgnoring our calls, while we’re left to cry
 * Square.js file, a thorn in our side
   Your lack of action, we cannot abideFix it
   now, or face our wrathYour apathy has put us on a dangerous path.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [WooCommerce Square] Plugin no longer working with older versions of Safari](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/#post-16687488)
 * Stores continue to lose money.
 * Square continues to lose more.
 * Because customer service won’t publicly acknowledge the problem with the CDN 
   square.js file.
 * if anyone has seen loss in revenue lately, you can blame square. I suggest that
   you do. You may not have an older Mac or iOS device, but your customers do.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [WooCommerce Square] Plugin no longer working with older versions of Safari](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/#post-16683720)
 * This is confirmed on both older iOS devices and Mac. I’ve tested 12.1.
   Anybody
   with an older device can’t checkout! I’ve tried on other sites that use square
   hosted forms. The entire internet, WooCommerce or not, cannot checkout via square
   on older Mac and iOS devices because of your faulty CDN code. I’ve escalated 
   the issue with WooCommerce, but no reply here.Everyone is losing money, including
   Square. You’d think a bug like this would be priority. Instead, you reply to 
   every new comment but this one. Very poor customer service.
    -  This reply was modified 3 years, 3 months ago by [kw11](https://wordpress.org/support/users/kw11/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [WooCommerce Square] Plugin no longer working with older versions of Safari](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/plugin-no-longer-working-with-older-versions-of-safari/#post-16677221)
 * Support, are you looking into this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Marketing for WooCommerce by Omnisend] Broken resync code fix](https://wordpress.org/support/topic/broken-resync-code-fix/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/broken-resync-code-fix/#post-16643010)
 * Wish I could edit threads for longer. I missed a line of code. And this new block
   editor commenting system gives me problems. Here it is again.
 *     ```wp-block-code
       /*Add a custom cron schedule for every 2 minutes*/
       function omnisend_2min_cron($schedules) {
           $schedules['two_minutes'] = array(
               'interval' => 60 * 2,
               'display' => __('Every 2 minutes', 'omnisend-woocommerce')
           );
           return $schedules;
       }
   
       /*Initialize the custom cron schedule on init*/
       function omnisend_initialize_cron_schedule() {
           add_filter('cron_schedules', 'omnisend_2min_cron');
       }
       add_action('init', 'omnisend_initialize_cron_schedule');
       ```
   
    -  This reply was modified 3 years, 4 months ago by [kw11](https://wordpress.org/support/users/kw11/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Marketing for WooCommerce by Omnisend] Broken resync code fix](https://wordpress.org/support/topic/broken-resync-code-fix/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/broken-resync-code-fix/#post-16642750)
 * Sorry, might be more appropriate to use init(), but both will work. This also
   doesn’t change your function names or overall structure.
   Use this instead if 
   desired.
 *     ```wp-block-code
       /*Add a custom cron schedule for every 2 minutes*/
       function omnisend_2min_cron($schedules) {
           $schedules['two_minutes'] = array(
               'interval' => 60 * 2,
               'display' => __('Every 2 minutes', 'omnisend-woocommerce')
           );
           return $schedules;
       }
   
       /*Initialize the custom cron schedule on init*/
       function omnisend_initialize_cron_schedule() {
           add_filter('cron_schedules', 'omnisend_2min_cron');
       }
       ```
   
    -  This reply was modified 3 years, 4 months ago by [kw11](https://wordpress.org/support/users/kw11/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Marketing for WooCommerce by Omnisend] Broken resync code fix](https://wordpress.org/support/topic/broken-resync-code-fix/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/broken-resync-code-fix/#post-16641047)
 * I also wanted to suggest being able to sync wordpress/woocommerce custom fields
   or tags from WordPress to Omnisend. So far, I’ve looked at how your plugin does
   tags and this shouldn’t be too hard for contacts.
   Just a simple settings page
   to select the wordpress custom fields that will correspond to tags, etc. for 
   users. Then you add a couple lines of code in class-omnisend-contact.php so these
   tags are automatically synced to contacts.You’ll really stand out from the competition
   if you add some basic features that allow users to segment any way they want.
    -  This reply was modified 3 years, 4 months ago by [kw11](https://wordpress.org/support/users/kw11/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics for WooCommerce] GA quit tracking with update 1.7.0](https://wordpress.org/support/topic/ga-quit-tracking-with-update-1-7-0/)
 *  [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/ga-quit-tracking-with-update-1-7-0/#post-16639295)
 * I can confirm that downgrading to 1.6.2 does the trick. 1.7.0 is a bad release.
   Try that until they figure out what’s wrong with their plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics for WooCommerce] Sales are not recording Google Analytics](https://wordpress.org/support/topic/sales-are-not-recording-google-analytics/)
 *  [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/sales-are-not-recording-google-analytics/#post-16639292)
 * Unofficial support here.
   Downgrade to 1.6.2 and everything should work as before.
   1.7.0 is a bad release.[https://wordpress.org/plugins/woocommerce-google-analytics-integration/advanced/](https://wordpress.org/plugins/woocommerce-google-analytics-integration/advanced/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PhastPress] Google crawler and web browser seeing phast.php JSON files as HTML document](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/#post-16197494)
 * Mobile crawl requests are back to normal (actually above previous normal), and
   desktop crawl requests also spiking.
 * Overall crawl requests much higher now.
 * phast.php* is blocked with robots.txt. I didn’t have a chance to test it for 
   a significant period of time with just text/json MIME type, but still think it
   probably was confusing the mobile crawler, which was interpreting text/plain 
   as text/html.
 * Crawler was confused and would suggest blocking phast.php from robots. Unfortunately,
   this plugin has the potentially to seriously impact indexability and rankings
   without these steps.
    -  This reply was modified 3 years, 9 months ago by [kw11](https://wordpress.org/support/users/kw11/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PhastPress] Google crawler and web browser seeing phast.php JSON files as HTML document](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/#post-16173321)
 * So to be clear, you think it’s fine to block phast.php in robots.txt?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PhastPress] Google crawler and web browser seeing phast.php JSON files as HTML document](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/#post-16171058)
 * One more question. Will blocking phast.php* from robots.txt have any negative
   consequences when it comes to crawling? Or will it just prevent bundled resources
   from caching?
 * It seems like Googlebot and most robots don’t cache anything anyway?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PhastPress] Google crawler and web browser seeing phast.php JSON files as HTML document](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/#post-16170964)
 * I edited the plugin so the Content-Type to `application/json; charset=utf-8`.
   I’ll let you know what Googlebot thinks in a few days. On our server, it’s automatically
   Brotli compressed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PhastPress] Google crawler and web browser seeing phast.php JSON files as HTML document](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/#post-16170853)
 * I just reread what you wrote and you said it’s because some servers don’t automatically
   compress application/json.
 * Is there a way you can instruct the server to do this with application/json MIME
   type? If not, can you detect if a server has the capability to compress application/
   json, and if it does, serve them as application/json? The latter solution is 
   not a perfect solution from an SEO perspective, but will get rid of this Googlebot
   issue for those who can compress application/json.
    -  This reply was modified 3 years, 9 months ago by [kw11](https://wordpress.org/support/users/kw11/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PhastPress] Google crawler and web browser seeing phast.php JSON files as HTML document](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/)
 *  Thread Starter [kw11](https://wordpress.org/support/users/kw11/)
 * (@kw11)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/google-crawler-and-web-browser-seeing-phast-php-json-files-as-html-document/#post-16170688)
 * FWIW, admin-ajax.php uses `Content-Type: application/json; charset=UTF-8` in 
   the response headers. That won’t work in some browsers?
 * It also uses `x-robots-tag: noindex`
    -  This reply was modified 3 years, 9 months ago by [kw11](https://wordpress.org/support/users/kw11/).
    -  This reply was modified 3 years, 9 months ago by [kw11](https://wordpress.org/support/users/kw11/).

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/kw11/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/kw11/replies/page/3/?output_format=md) [→](https://wordpress.org/support/users/kw11/replies/page/2/?output_format=md)