D5 Creation Forum

Open Forum for D5 Creation's Members and Visitors

Before requesting any support Please search the Forum First. You may find your desired answer. This will save your waiting time and will save our working hour. We may not answer the question which we have already answered. You should also read our Support Policy

How to make a NEW TEMPLATE, with no sidebar or header

Front Page D5 Creation Forum General Support How to make a NEW TEMPLATE, with no sidebar or header

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #3366
    Paul Wallin
    Participant

    this may be more custom (although I prefer just to do it myself), but I have a site with your Simplify Extend theme. (website is: http://www.recruityourkid.com)

    I want to make a webpage for a client that is more or less an online resume (Photo, resume information, videos from youtube, etc..)

    NO Sidebars
    NO Header

    Does not tie back to my site.

    Thanks

    #4393
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on May 10, 2013, 18:06
    this may be more custom (although I prefer just to do it myself), but I have a site with your Simplify Extend theme. (website is: http://www.recruityourkid.com)

    I want to make a webpage for a client that is more or less an online resume (Photo, resume information, videos from youtube, etc..)

    NO Sidebars
    NO Header

    Does not tie back to my site.

    Thanks

    You can do it easily using the Full Width Template during Page Creating/Editing.

    #4394
    Paul Wallin
    Participant

    I tried Full Width, but it still puts a “header” and “Title” on it. What is the correct PHP entry to remove those two items, but keep the color formatting, and use the WYSIWYG

    I tried this… but returned a blank white page (i added comment to: line 12, line 13, line 19, line 20

    <?php
    /*
    Template Name: BIO
    Simplify Theme’s (full width tweaked)
    Copyright: 2012, D5 Creation, https://www.d5creation.com
    Based on the Simplest D5 Framework for WordPress
    Since Simplify 1.0
    */
    ?>

    <?php
    /* get_header();
    */?>
    <div id=”container”>
    <div id=”content-full”>
    <?php if (have_posts()) : while (have_posts()) : the_post();?>

    <h1 id=”post-<?php the_ID(); ?>” class=”page-title”><?php
    /* the_title();
    */
    ?></h1>

    #4395
    D5 Creation
    Keymaster

    Please provide the specific Page Url. Thus we may assist you.

    #4398
    Paul Wallin
    Participant
    #4399
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on May 12, 2013, 21:16
    site: http://www.recruityourkid.com
    specific page: http://recruityourkid.com/levi-hagen/

    Unfortunately the link is not working.

    #4400
    Paul Wallin
    Participant
    #4401
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on May 14, 2013, 02:33
    try;
    http://recruityourkid.com/levihagen/

    We see that you have removed the header. Do you still need any assistance?

    #4402
    Paul Wallin
    Participant

    Here’s the question;

      I tried Full Width, but it still puts a “header” and “Title” on it.
      I made the entry above, but it removed all formatting, color scheme, etc… (What I did worked, but it returned a blank white page)

    Three (3) questions for you
    1) What is the correct PHP entry to remove those two items, but keep the color formatting, and use the WYSIWYG type Editor.
    2) Is there a way to have a blank header (no “home” type links in the header)
    3) Is there a way to have link in the header exclusive for that page (version putting links at the bottom of the page like i did)… refer to http://recruityourkid.com/levihagen/

    Thanks,

    #4403
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on May 14, 2013, 23:38
    Here’s the question;

      I tried Full Width, but it still puts a “header” and “Title” on it.
      I made the entry above, but it removed all formatting, color scheme, etc… (What I did worked, but it returned a blank white page)

    Three (3) questions for you
    1) What is the correct PHP entry to remove those two items, but keep the color formatting, and use the WYSIWYG type Editor.
    2) Is there a way to have a blank header (no “home” type links in the header)
    3) Is there a way to have link in the header exclusive for that page (version putting links at the bottom of the page like i did)… refer to http://recruityourkid.com/levihagen/

    Thanks,

    You need not touch the Theme Files or PHP Coding. You can simply implement some CSS Styling for these, like you can add the following code in the bottom of your Specific Page Editor selecting Text Mode.

    Code:
    <style>
    #header { display: none; }
    #footer { display: none; }
    </style>
    #4490
    Paul Wallin
    Participant

    We are close.

    I get using full Width and this code;
    <style>
    #header { display: none; }
    #footer { display: none; }
    </style>

    BUT… I would like to have;
    FULL Width
    HEADER… but no menu’s (only the coloring and logo)

    thanks!

    #4492
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on June 12, 2013, 05:38
    We are close.

    I get using full Width and this code;
    <style>
    #header { display: none; }
    #footer { display: none; }
    </style>

    BUT… I would like to have;
    FULL Width
    HEADER… but no menu’s (only the coloring and logo)

    thanks!

    Please replace the previous code with the following:

    Code:
    <style>
    #simplify-main-menu { display: none; }
    #footer { display: none; }
    </style>
    #4504
    Paul Wallin
    Participant

    I added the above code into the specific page, and here’s what came of it;
    http://recruityourkid.com/test-2/ ‎

    As you can see… there is no header/footer.

    But,
    A) I want the header / footer, but
    B) I don’t want the various links that appear on it such as: About the Advantage, Advantage Membership, Log out
    (see this site: http://recruityourkid.com/test-3/)

    QUESTION:
    1. What code can I amend to this to show the footer/header, but no links in the header??

    <style>
    #header { display: none; }
    #footer { display: none; }
    </style>

    #4506
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on June 24, 2013, 01:01
    I added the above code into the specific page, and here’s what came of it;
    http://recruityourkid.com/test-2/ ‎

    As you can see… there is no header/footer.

    But,
    A) I want the header / footer, but
    B) I don’t want the various links that appear on it such as: About the Advantage, Advantage Membership, Log out
    (see this site: http://recruityourkid.com/test-3/)

    QUESTION:
    1. What code can I amend to this to show the footer/header, but no links in the header??

    <style>
    #header { display: none; }
    #footer { display: none; }
    </style>

    We see that you have multiple questions at a time in different threads. We shall respond you soon.

    #4509
    Paul Wallin
    Participant

    Sorry about that… i coudn’t figure how to delete the post.

    But I researched and found this;

    THIS ADD’S ADD’T MENUS (which is did)

    register_nav_menus(
    array(
    ‘main-menu’ => “Main Menu”,
    ‘member-menu’ => “Member Menu”,
    ‘Resume-menu’ => “Services Menu”

    /*’profile-menu’ => __( ‘Profile Menu’ )
    ‘services-menu’ => __( ‘Services Menu’ )*/
    )
    );

    BUT I GET A SPECIFIC PAGE TEMPLATE TO WORK. I TRIED THIS ON “FULLWIDTH.PHP”

    < ?php
    if (is_page(‘main-menu’)){
    wp_nav_menu(array(‘menu’=>’Main Menu’ ));
    } elseif (is_page(712)) {
    wp_nav_menu(array(‘menu’=>’members-menu’ ));
    }
    ?>

    Where ID712 is a test page.

    Appreciate the help.

    #4512
    D5 Creation
    Keymaster
    Quote:
    Quote from pablocabo on June 24, 2013, 01:01
    I added the above code into the specific page, and here’s what came of it;
    http://recruityourkid.com/test-2/ ‎

    As you can see… there is no header/footer.

    But,
    A) I want the header / footer, but
    B) I don’t want the various links that appear on it such as: About the Advantage, Advantage Membership, Log out
    (see this site: http://recruityourkid.com/test-3/)

    QUESTION:
    1. What code can I amend to this to show the footer/header, but no links in the header??

    <style>
    #header { display: none; }
    #footer { display: none; }
    </style>

    Just forget all the codes and use only the following code in the Page/Post Editor during Creating/Editing Page/Post

    Code:
    <style>
    #simplify-main-menu, #social, #footer-sidebar { display: none; }
    </style>
Viewing 16 posts - 1 through 16 (of 16 total)
  • You must be logged in to reply to this topic.