So far to test it I have written Hello, and then added that line. I can see hello but the rest is blank.
Lets say add_this_page.php just says "Welcome to my store."
add_this_page_also.php says "Please enjoy your visit."
Expected output would be:
Hello, Welcome to my store. Please enjoy your visit.
Instead I get:
Hello
The files are located in the admin directory for now so I changed the code to:
Hello
<?php
include(DIR_FS_ADMIN . 'add_this page.php');
include(DIR_FS_ADMIN . 'add_this page_also.php');
?>
I did try moving the files into the store front side and using DIR_FS_CATALOG as well with no success.
Thank you
Maybe in the title I should have left off the "editor" but yes using the define pages editor to code a page. I want to include other php pages to be included on that same page as part of the page.