Skip to:
Content
Pages
Categories
Search
Top
Bottom

add text to home page of forum

  • @amylmc

    Member

    I would like to add a text box to the home page of my forum, so that users have a brief explanation of the site’s purpose. Can someone please tell me how to do that?

    Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • @kawauso

    Member

    Add it to your theme’s front-page.php

    @amylmc

    Member

    I’m not code savvy. Can you please advise the specifics of what and where within the file to add it?

    Thank you!

    @kawauso

    Member

    Where do you want to add it relative to the current layout?

    @amylmc

    Member

    I would like to replace the ‘Hot Tags’ section in the ‘Misty’ theme with a box in which I can enter and change custom text.

    Thanks!

    @hpguru

    Member

    Edit a themes front-page.php.

    Replace

    <h2><?php _e('Hot Tags'); ?></h2>
    <p class="frontpageheatmap"><?php bb_tag_heat_map(); ?></p>

    with…

    <h2><?php _e('Some Text'); ?></h2>
    <p>Text text text.</p>

    @brucini

    Member

    what if i wanted to keep the tags and have text below?

    just add:

    <h2><?php _e(‘Some Text’); ?></h2>

    <p>Text text text.</p>

    i’m surprised there’s not a sidebar text plugin…seems to be a plugin for everything else

    @hpguru

    Member

    Find

    <h2><?php _e('Hot Tags'); ?></h2>
    <p class="frontpageheatmap"><?php bb_tag_heat_map(); ?></p>

    add

    <h2>Text</h2>
    <p>Text text text</p>

    =

    <h2><?php _e('Hot Tags'); ?></h2>
    <p class="frontpageheatmap"><?php bb_tag_heat_map(); ?></p>

    <h2>Text</h2>
    <p>Text text text</p>

    @brucini

    Member

    sweet action. ta.

Viewing 8 replies - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.
Skip to toolbar