Before you ask please READ THIS

How do i Exclude a Work from home page? i already added a specific different category to it.

edited July 2013 in Beach Please Posts: 23
How do i Exclude a Work from home page? i already added a specific different category to it.

Comments

  • AirAir
    Posts: 10,970
    Hello:-)

    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.
  • edited August 2013 Posts: 23
    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 :/?

    thanks.
    Post edited by marcusvpais on
  • AirAir
    Posts: 10,970
    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:
    elseif($fp_variant == 'works_list'){
    get_template_part( 'works_template' );
    }
    to:
    elseif($fp_variant == 'works_list'){
    define('CALLED_FROM_FRONT_PAGE', true);
    get_template_part( 'works_template' );
    }
    Next go to works-list.php line ~31 and before:
    if($genre_template === true){
    add this code

    if(defined('CALLED_FROM_FRONT_PAGE')){
    $args[CPT_WORK_TAXONOMY] = 'slug_of_category';
    }
    and change 'slug_of_category' to desired category slug

    Hope this helps:-)

    With regards.
  • Worked like a charm! thank you very much!! :) Coffee for you sir!
  • AirAir
    Posts: 10,970
    marcusvpais said: Coffee for you sir!
    Thanks for that :-)
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!