Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter mikebw2000

    (@mikebw2000)

    Full Page -shows site intact with just empty space where forum should be
    Static- shows just copyright footer
    Index- shows just copyright footer

    Hello. Could you post the link to your website?
    Try to check the hierarchy of your template pages of your theme. It should be like in any default wordpress theme. It need to has header, content and footer sections.

    Thread Starter mikebw2000

    (@mikebw2000)

    The website is http://www.fishdetroit.com I do have header and footer i’m sure.

    maybe you need to change you div ids to default.
    I mean the structure:

    <div id=”header”>
    </div>
    <div id=”main”>
    <div id=”container”>
    <div id=”content”>
    </div>
    </div>
    </div>
    <div id=”footer”>
    </div>

    The phpbb forum is placed somethere in <div id=”content”>

    Thread Starter mikebw2000

    (@mikebw2000)

    i took the prefixes off the structure as you suggested. Still the same. I notice that my theme doesnt have <div id=”content”>. My content is place in <div class=”content-layout”>. This is probably the problem.

    There is also some structure of wp loop inside the “content” div. You need to create the same structure in your theme.

    Thread Starter mikebw2000

    (@mikebw2000)

    i tried to put div id=content in the header but still didnt work. Not sure what the problem is but its definitely theme specific.

    Thread Starter mikebw2000

    (@mikebw2000)

    so would the whole theme have to be redeveloped? I see the loop is in the page.php file. This is all in the file
    `<?php get_header(); ?>
    <?php get_sidebar(‘top’); ?>
    <?php

    if (have_posts()) {
    /* Start the Loop */
    while (have_posts()) {
    the_post();
    get_template_part(‘content’, ‘page’);
    }
    } else {
    theme_404_content();
    }
    ?>
    <?php get_sidebar(‘bottom’); ?>
    <?php get_footer(); ?>`

    <div id=”content”> must not be in header.
    Theme structure should be somekind of http://codex.wordpress.org/Site_Architecture_1.5
    Default wordpress themes are good examples.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Artisteer Built Theme’ is closed to new replies.