I think there is no easy way to make wordpress display category page as homepage. I know there are some redirect plugins that can make such things. I never used them but you can experiment with them.
thanks for the info. Gonna try the redirect plugins.
Just to let you know, i tried Display: none on the Div of the album i didn't want to display, but the space is still filled up. Any ideas on how i can do this by css ?
marcusvpais said: Just to let you know, i tried Display: none on the Div of the album i didn't want to display, but the space is still filled up. Any ideas on how i can do this by css ?
I think it would require CSS and JS interaction to make it this way.
If you wish to make some modification then you could limit home page Works list by this: Go to front-page.php line ~45 and change:
Comments
I think there is no easy way to make wordpress display category page as homepage. I know there are some redirect plugins that can make such things. I never used them but you can experiment with them.
With regards.
Just to let you know, i tried Display: none on the Div of the album i didn't want to display, but the space is still filled up. Any ideas on how i can do this by css
thanks.
If you wish to make some modification then you could limit home page Works list by this:
Go to
front-page.phpline ~45 and change:elseif($fp_variant == 'works_list'){to:get_template_part( 'works_template' );
}
elseif($fp_variant == 'works_list'){Next go todefine('CALLED_FROM_FRONT_PAGE', true);
get_template_part( 'works_template' );
}
works-list.phpline ~31 and before:if($genre_template === true){add this code and change'slug_of_category'to desired category slugHope this helps:-)
With regards.