diff --git a/vendor/fishpig/magento2-wordpress-integration/App/Integration/Tests/ThemeTest.php b/vendor/fishpig/magento2-wordpress-integration/App/Integration/Tests/ThemeTest.php index 2f561c5..c611bd0 100644 --- a/vendor/fishpig/magento2-wordpress-integration/App/Integration/Tests/ThemeTest.php +++ b/vendor/fishpig/magento2-wordpress-integration/App/Integration/Tests/ThemeTest.php @@ -34,7 +34,14 @@ class ThemeTest implements \FishPig\WordPress\Api\App\Integration\TestInterface public function runTest(): void { if (!$this->themeDeployer->isLatestVersion()) { - $this->themeDeployer->deploy(); + // @DO - commented out + // Fishpig checks for new theme version upon every request + // comparing local hash with remote hash + // if it mismatches, the module attempts to download the latest theme ZIP file + // Prevent Fishpig from auto updating theme + // The directory is not writable and breaks the /blog + // across all stores + // $this->themeDeployer->deploy(); } } }