supportpenb
Forum Replies Created
-
After the update to Divi Torque Lite we had the same issue.
It seems a reference to a missing minnified magnific-popup.min.css is the issue.
Our Apache2 access logs were filled with 404 errors with “GET /wp-content/plugins/addons-for-divi/assets/libs/magnific-popup/magnific-popup.min.css HTTP/1.1”.
/wp-content/plugins/addons-for-divi/includes/assets-manager.php mentions:
'magnific-popup' => 'magnific-popup/magnific-popup.min.css',
But our copy of Divi Torque Lite 4.0.6 contained only the not-minified version of the CSS:root@SERVER1:~# ls -l /var/www/SITENAME/wp-content/plugins/addons-for-divi/assets/libs/magnific-popup/
total 76
-rw-r--r-- 1 www-data www-data 43807 Nov 8 23:16 jquery.magnific-popup.js
-rw-r--r-- 1 www-data www-data 20735 Nov 8 23:16 jquery.magnific-popup.min.js
-rw-r--r-- 1 www-data www-data 6852 Nov 8 23:16 magnific-popup.css
You could try rolling back to a previous version as detailed in the “Rollback to Previous Versions” sticky topic in this support forum.
In our case i “fixed” it by replacing the reference to magnific-popup.min.css by magnific-popup.css in assets-manager.php with the following sed command (this requires shell access to your website host, and the correct path to your website directory and site):sed -i 's/magnific-popup\.min\.css/magnific-popup.css/' /var/www/SITENAME/wp-content/plugins/addons-for-divi/includes/assets-manager.php- This reply was modified 1 year, 7 months ago by supportpenb. Reason: Added inline code box around the line from asssets-manager.php