Hi,
You will also need to change the directory of the include of sf-portfolio.php
In Dante child functions.php add the code below
if (!function_exists('sf_custom_content')) {
function sf_custom_content_functions() {
include_once(SF_INCLUDES_PATH . '/sf-header.php');
include_once(SF_INCLUDES_PATH . '/sf-blog.php');
include_once(STYLESHEETPATH . '/sf-portfolio.php');
include_once(SF_INCLUDES_PATH . '/sf-products.php');
include_once(SF_INCLUDES_PATH . '/sf-post-formats.php');
}
add_action('init', 'sf_custom_content_functions', 0);
}
-Rui