Galleries and Portfolios not loading correctly.
Fix: Check the browser for any errors.
Possible Errors:
403 for the file /wp- content/plugins/litespeed- cache/guest.vary.php
This is likely caused by a security plugin creating a rule to block all .PHP files from executing.
The rule that causes this will likely look something like this:
<Files *.php>
Order allow,deny
Deny from all
</Files>
Add the following code to the .htaccess file in /wp-content/ below the security tool rule.
<Files guest.vary.php>
Order allow, deny
Allow from all
</Files>
This will allow only guest.vary.php to run and fix the caching issue.