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

Reply To: Remove Archive and Meta from posts and pages

#9089
D5 Creation
Keymaster

Template Options is only present in Pages, not Posts. This is WordPress System, not controlled by Themes !

Can I Disable the Sidebar from NewsPress Theme ? The Answer is YES

Most of our Themes have Layout Options like Full Width, Content+Right Sidebar and Left Sidebar + Content which can be selected from the Theme Options. But NewsPress doesn’t have that option. We didn’t provide it at NewsPress because NewsPress is a special Theme for News Sites. All News Sites should have a sidebar to show popular news, advertisements etc. But, some of our users still want to disable the Sidebar. For Pages you can do it easily selecting the Full Width Template. All of our Themes have Full Width Template for Pages. ( Please remember that Template is not present for Posts by WordPress System )

Full Width Template of NewsPress

You can easily Remove the default WidGets from WP-Admin > Appearance > WidGets putting any WidGets from the available items. The Front Page Sidebar and News Page Sidebar should not be left blank until you completely disable the Sidebar. This is a technique which can be used in all of our Themes following This Tutorial.

If you want to hide the Sidebar from Front Page you can paste the Following in the WP-Admin > Appearance > NewsPress Options > Custom Code within Head Area for Front Page Box

<style>#right-sidebar { display: none; } #content { width: auto; }</style>

If you want to hide the Sidebar from Single Page News you can paste the Following in the WP-Admin > Appearance > NewsPress Options > Custom Code within Head Area for Single Page News Box

<style>#right-sidebar { display: none; } #content { width: auto; }</style>

If you want to hide the Sidebar from Single Page Video News you can paste the Following in the WP-Admin > Appearance > NewsPress Options > Custom Code within Head Area for Video News Box

<style>#right-sidebar { display: none; } #content { width: auto; }</style>

If you want to hide the Sidebar from Category/Archive and Other Pages you can paste the Following in the WP-Admin > Appearance > NewsPress Options > Custom Code within Head Area for Category/Archive and Other Pages Box

<style>#right-sidebar { display: none; } #content { width: auto; }</style>

NewsPress Custom Code

Thus you will get the Site like the following without Sidebar

NewsPress Remove Sidebar