Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Shadow_boi — You opened a door or thought for me which led to me solving my issue. When I saw this post a light went off.

    @futurepocket. The best way to troubleshoot these problems is time. Start putting ‘xxxxxxxxxxxxxx’ in spots to see where they show up to see if your close to the problem or even on the right page. <!– Comment out stuff –>, // and see how it looks. On, and on, and on.

    Thanks guy.

    Thread Starter jbellatl

    (@jbellatl)

    No, you guys mess around so many sidebar malarkey it’s probably a bone cringing term.

    I love what you guys are going, thank you.

    Thread Starter jbellatl

    (@jbellatl)

    Fixed it at long last!

    Ok the fix in this side bar case… went to /wp-content/themes/[YOUR_THEME]/library and opened up template_page.php (may be a different name for your theme).

    Went from…

    <?php if(pagelines(‘featureboxes’, $post->ID) && VPRO) require(PRO.’/template_fboxes.php’);?>
    <!– Standard Page Code –>
    <div id=”maincontent”>

    <div id=”content”>

    <?php require(THEME_LIB.’/_posts.php’);?>

    </div> <!– end content –>
    </div>
    <?php get_sidebar();?> <————not right

    <!– End Standard Page –>

    TO:
    <?php if(pagelines(‘featureboxes’, $post->ID) && VPRO) require(PRO.’/template_fboxes.php’);?>
    <!– Standard Page Code –>
    <div id=”maincontent”>

    <div id=”content”>

    <?php require(THEME_LIB.’/_posts.php’);?>

    </div> <!– end content –>
    <?php get_sidebar(); ?> <—–Inside the container
    </div>

    <!– End Standard Page –>

    I guess the moral here is is make sure that side bar is in the container. Hit me up if you need help.

    Thread Starter jbellatl

    (@jbellatl)

    I deleted the hook and the thesis theme to no avail

    Thread Starter jbellatl

    (@jbellatl)

    this is the hook that I added….

    /*move the nav bar below the header*/
    remove_action(‘thesis_hook_before_header’, ‘thesis_nav_menu’);
    add_action(‘thesis_hook_after_header’, ‘thesis_nav_menu’);

Viewing 5 replies - 1 through 5 (of 5 total)