Front Page › D5 Creation Forum › General Support › How to make a NEW TEMPLATE, with no sidebar or header
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
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.
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>
Please provide the specific Page Url. Thus we may assist you.
site: http://www.recruityourkid.com
specific page: http://recruityourkid.com/levi-hagen/
Unfortunately the link is not working.
We see that you have removed the header. Do you still need any assistance?
Here’s the question;
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,
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.
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!
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:
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>
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.
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.
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