FIX: Custom path error

By default, it looks like the custom path (under Pro > Settings) is set to “pro”. However, when choosing Pro > Headers, Pro > Content, etc. I get a HTTP ERROR 500 because it trying to pull a page a sub-directory (folder) /pro/#/content or /pro/#/header instead of /#/content or /#/header.

How do I adjust this?

Found this solution – https://theme.co/apex/forum/t/pro-and-wp-4-9-6/32902

Usually, this would happened because there is lacking of PHP memory allocation. You could try increasing your memory allocation manually or ask your hosting on how to do it.

To increase manually, please edit your wp-config.php file and insert these lines:

define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ );

Glad to know that you got the solution!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.