Hello @motemarketing,
Thanks for writing in!
One of the most common errors is the PHP Memory Exhaustion. We recommend that you increase your memory allocated to PHP. To increase it, please edit your wp-config.php file and insert these lines:
define( 'WP_MEMORY_LIMIT', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );
You can add it before the line
/*That's all, stop editing! Happy Blogging. */
If you are still experiencing the error, can you please go to Pro > Status? Copy the results and post it in your next reply so that we can analyze your server settings. By the way, please make sure that you have meet the server requirements to run the latest WordPress core and the Pro theme. Please refer this links:
And to get more detailed information about the error, can you please enable the debug mode? You can do this by opening wp-config.php and adding:
define('WP_DEBUG', true);
/* That's all, stop editing! Happy blogging. */
When you revisit the page, you should have some error output describing the issue in more detail.
Thanks.