Background of the issue:
I am trying to load my website, which is only partially loading and very slowly. I have updated the theme, the latest version of WordPress, and all active plugins. I have a redirect from hidden link to nfrjapan.com, which seems to be working fine. The issue can be seen at hidden link.
Symptoms:
The website is only partially loading, very slowly, and none of the products or content are displaying except for the top menu.
Questions:
Why is my website only partially loading?
Why is the website loading very slowly?
Why are none of the products or content displaying on the website?
While one of my teammates takes care of your ticket, I will provide you with the first debugging steps.
You might be facing a fatal error on the page. The first step is to enable debug. You can do this by adding a few lines to the site’s wp-config.php file. With error log enabled, you will see the actual problem.
To enable it, open your wp-config.php file and look for define(‘WP_DEBUG’, false);. Change it to:
define('WP_DEBUG', true);
To enable the error logging to a file on the server, you need to add yet one more similar line:
define( 'WP_DEBUG_LOG', true );
In this case, the errors will be saved to a debug.log log file inside the /wp-content/directory.