I have found thisissue with many themes. One solution is to find any php_require statements like this:
<?/* php require(‘./post.php’); */ ?>
and replace them with this:
<?php include (TEMPLATEPATH . ‘/post.php’); ?>
I have found thisissue with many themes. One solution is to find any php_require statements like this:
<?/* php require(‘./post.php’); */ ?>
and replace them with this:
<?php include (TEMPLATEPATH . ‘/post.php’); ?>