Theme Support Forum

Support Forum for Free and Premium Themes. Premium Theme Forums are Private! Please log in first to see the Premium forums

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

Replacing Posts with Pages

Home Forums Misc. General Forums Replacing Posts with Pages

  • #12180

    b.p.runt

    subscriber

    Hey,

    I was wondering if There is a way to edit Layout 1 to pull the thumbnails of featured images from pages instead of from posts. Can I somehow implement “improve include page” plugin to reference these thumbs or by using:

    <?php query_posts(‘page_id=7’); ?>

    <?php while (have_posts()) : the_post(); ?>

    <?php the_post_thumbnail(); ?>

    <?php endwhile; ?>

    I love the formatting of the collums and what not but would like to know how to reference these titles and thumbs instead of the posts.

    #15725

    b.p.runt

    subscriber

    Also, The documentation with Triton PRO says that the Theme has two menu locations bu the menu page only shows one. Is their a way to access this secondary menu?

    #15726

    b.p.runt

    subscriber

    And finally, the advert also states Unlimited skins, but I do not see anywhere to Export these settings. Is there a way to create these or not?

    #15727

    Towfiq I.

    administrator

    I dont understand your first question. Can you elaborate? What are trying to achieve? What plugin are you using, what does it do?

    It was a typo, I guess. the theme only has one menu. Unlimited skins means, unlimited color combination, which results unlimited skins. Go to Appearance> Triton Options>Style to set the color of each element. Sadly you cannot export the color combinations.

    You can always get a refund if you are not happy with the product. 🙂

    #15728

    Towfiq I.

    administrator

    Here is how you can add a second menu in the footer:

    You will have to edit 3 files.

    1. Go to Appearance >Editor and select “functions.php” file from right and find this line:

    //Register Menus
    register_nav_menus( array(
    'primary' => __( 'Primary Navigation', 'Triton' )
    ) );

    And replace it with:

    //Register Menus
    register_nav_menus( array(
    'primary' => __( 'Primary Navigation', 'Triton' ),
    'footer_menu' => __( 'Footer Navigation', 'Triton' )
    ) );

    2. Then select “footer.php”from right and find this line:

    <div class="copytext">
    <?php echo $option['trt_foot']; ?>
    </div>

    And replace it with:

    <div class="copytext">
    <?php echo $option['trt_foot']; ?>
    </div>
    <div id="footmenu">
    <?php wp_nav_menu( array( 'container_class' => 'menu-footer', 'theme_location' => 'footer_menu', 'depth' => 0, 'fallback_cb' =>false) ); ?>
    </div>

    3. Then select “stylesheet” from right and add this line to the very bottom:

    #footmenu{ float:right;font-size:12px; float:left; width:60%;}
    .menu-footer{ float:right; margin-bottom:15px;}
    #footmenu ul{ margin:0; padding:0;}
    #footmenu ul li{ float:left; padding:0 10px; list-style-type:none;}
    #footmenu ul li a{color:#424242; text-decoration:none;}
    #footmenu .sub-menu{ display:none;}

    Thats all, Now you can add menu to the footer from Appearance> Menus

Tagged: