• Resolved edo.hayashi

    (@edohayashi)


    First off, fantastic theme! Easy to use and the plugins work. I have a few questions though

    1. Setting Home Page as static page creates a different Site Title. It becomes Home – Gridsby instead of Gridsby – An Awesome WP Theme. Is there a way to remove this and divert to default Site Name and Site Description?

    2. Is there a way to disable the sidebar on blog posts and make it full width?

    3. How can I hide the Posted In and Tagged at the bottom part of the blog post?

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter edo.hayashi

    (@edohayashi)

    For those who are interested to remove the sidebar, what I did was to edit the single.php.

    Modified the column

    <div class="col-1-1 content-wrapper">

    and deleted

    <?php get_sidebar(); ?>

    As for hiding the Posted in and Tagged, go to your content-single.php then delete

    <footer class="entry-footer">
    			<?php gridsby_entry_footer(); ?>
    		</footer><!-- .entry-footer -->
    Thread Starter edo.hayashi

    (@edohayashi)

    As for the Site Title, you’d have to modify the header.php and add an if statement for the title to overwrite the original codes.

    <title><?php if(is_front_page()) { echo bloginfo("name"); echo " | "; echo bloginfo("description"); } else { wp_title(''); } ?></title>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Site Title and Removal of Sidebar’ is closed to new replies.