What are some alternative methods to include PHP pages in NucleusCMS if the current methods are causing issues?

If the current methods of including PHP pages in NucleusCMS are causing issues, one alternative method is to use the PHP include function within the template file. This allows you to directly include the PHP file without relying on NucleusCMS's built-in methods, potentially avoiding any conflicts or errors.

<?php include('path/to/your/php/file.php'); ?>