in the utility.php file you need to change:
function cfct_context() {
$context = 'home';
if (is_home() || is_front_page()) {
$context = 'home';
}
to
function cfct_context() {
$context = 'home';
if (is_home()) {
$context = 'home';
}
else if (is_front_page()) {
$context = 'page';
} ·
http://crowdfavorite.com/forums/topic/front-page-not-using-page-content-template
in the utility.php file you need to change:
function cfct_context() {
$context = 'home';
if (is_home() || is_front_page()) {
$context = 'home';
}
to
function cfct_context() {
$context = 'home';
if (is_home()) {
$context = 'home';
}
else if (is_front_page()) {
$context = 'page';
} ·
http://crowdfavorite.com/forums/topic/front-page-not-using-page-content-template