I am still investigating this issue, and came across a fatal error that the theme is throwing. You can take a look at error_log in the themes folder, and you’ll see this:
25-Jul-2021 07:18:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function x_get_view() in /home/summerwind/public_html/wp-content/themes/pro/index.php:16
Stack trace:
#0 {main}
thrown in /home/summerwind/public_html/wp-content/themes/pro/index.php on line 16
[26-Jul-2021 07:34:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function x_get_view() in /home/summerwind/public_html/wp-content/themes/pro/index.php:16
Stack trace:
#0 {main}
thrown in /home/summerwind/public_html/wp-content/themes/pro/index.php on line 16
[27-Jul-2021 07:22:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function x_get_view() in /home/summerwind/public_html/wp-content/themes/pro/index.php:16
Stack trace:
#0 {main}
thrown in /home/summerwind/public_html/wp-content/themes/pro/index.php on line 16
Here’s the content of that index.php file:
<?php
// =============================================================================
// INDEX.PHP
// -----------------------------------------------------------------------------
// Handles output of pages and posts if a more specific template file isn't
// present. Must be present for theme to function properly.
//
// Content is output based on which Stack has been selected in the Customizer.
// To view and/or edit the markup of your Stack's index, first go to "views"
// inside the "framework" subdirectory. Once inside, find your Stack's folder
// and look for a file called "wp-index.php," where you'll be able to find the
// appropriate output.
// =============================================================================
x_get_view( x_get_stack(), 'wp', 'index' );
Could this be causing my problem?