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

Re: Help, please – Green Eye Side bar on front page-how to remove it?

Front Page D5 Creation Forum General Support Help, please – Green Eye Side bar on front page-how to remove it? Re: Help, please – Green Eye Side bar on front page-how to remove it?

#4808
D5 Creation
Keymaster

Replace the content of front-page.php with the following:

Code:
<?php
/*
Template Name: Front Page
GREEN EYE Theme’s Front Page to Display the Home Page if Selected
Copyright: 2013, D5 Creation, https://www.d5creation.com
Based on the Simplest D5 Framework for WordPress
Since GREEN 1.0
*/
get_header(); ?>
<div id=”container”>
<h1 id=”heading”><?php echo of_get_option(‘heading_text’, ‘Welcome to the World of Creativity!’); ?></h1>
<p class=”heading-desc”><?php echo of_get_option(‘heading_des’, ‘WordPress is web software you can use to create a <a href=”#”>beautiful website or blog</a>. We like to say that <a href=”http://wordpress.org/&#8221;>WordPress</a> is both free and priceless at the same time.’); ?></p>

<?php get_template_part( ‘featured-box’ ); get_template_part( ‘fcontent’ ); ?>

<div class=”content-ver-sep”></div>

<div class=”fpage-quote”>
<div class=”customers-comment”>
<ul><li> <?php echo ‘<q>’ . of_get_option(‘bottom-quotation’, ‘All the developers of D5 Creation have come from the disadvantaged part or group of the society. All have established themselves after a long and hard struggle in their life —– D5 Creation Team’) . ‘</q>’; ?></li></ul>
</div></div>

<?php get_footer(); ?>