Support » Fixing WordPress » I don’t want anything about buddypress on home page

  • I want my home page to direct people to 3 different places, one of which is buddypress social features. I see bp adds menu tabs at the bottom of the main banner, links for login, etc at the very top of the page, and login or my profile in the right column.

    I’ve created a static home page, but when I read about wp templates, it says you can’t change the header or footer – or can I really create a new header template that would just be used for the home page?

    Or?

    Thanks!

Viewing 1 replies (of 1 total)
  • but when I read about wp templates, it says you can’t change the header or footer

    Of course you can. Simplest way is to create header-home.php and footer-home.php for example then call those in home.php or page template you want to use for static front page.
    e.g. page template

    <?php
    /*
    Template Name: Home Page
    */
    ?>
    
    <?php get_header('home'); ?>
    
    // home page stuff
    
    <?php get_footer('home'); ?>
Viewing 1 replies (of 1 total)
  • The topic ‘I don’t want anything about buddypress on home page’ is closed to new replies.