hulbertlee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to get rid of date in posts?I removed this part:
<?php the_date(); ?>
Side note: I tried to bold it. That’s why it says on the sides. Sorry about that.
Forum: Fixing WordPress
In reply to: How to get rid of date in posts?Hi, this is what I removed, but it still says, “by hulbertlee on”.
<?php get_header(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class( 'single' ); ?>> <h1 class="single-post-title"><?php the_title(); ?></h1> <div class="single-post-meta"> <?php printf( __( 'by %s on', 'linen' ), get_the_author()); ?> <strong><?php the_date(); ?></strong> </div> <div class="entry single clear"> <?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'medium', array( 'class' => 'single-post-thm alignleft' ) ); } ?> <?php the_content(); ?> <?php wp_link_pages(); ?> </div><!--end entry--> <div class="post-footer clear"> <div class="tags"> <?php the_tags( 'Tags: ', ', ', '' ); ?> </div> <div class="cats"> <?php printf( __( 'From: %s', 'linen' ), get_the_category_list( ', ' ) ); ?> </div> </div><!--end post footer--> </div><!--end post--> <?php endwhile; /* rewind or continue if all posts have been fetched */ ?> <?php endif; ?> </div><!--end content--> <?php get_sidebar(); ?> <?php get_footer(); ?>How can I get rid of the “on” part?
Forum: Themes and Templates
In reply to: How to Move Sidebar Up a Bit?Here is the link to my site: howtofocusbetter.com
Forum: Themes and Templates
In reply to: How to Move Sidebar Up a Bit?Hi Christine, where are you getting that code from? I don’t see it anywhere.
I’m looking in my style.css for the linen_child_theme and this is what it says:
[CSS moderated as per the Forum Rules. Please just post a link to your site.]
What do I need to do now?
Forum: Themes and Templates
In reply to: How to Move Sidebar Up a Bit?Here is my website: howtofocusbetter.com
Forum: Fixing WordPress
In reply to: How to get rid of "Edit This" link?Thank you.
Forum: Fixing WordPress
In reply to: How to get rid of comments box?Thank you.
Forum: Fixing WordPress
In reply to: Question Regarding PostsThank you.
Forum: Themes and Templates
In reply to: How to switch the right sidebar to become a left sidebar?Linen.
http://thethemefoundry.com/linen/
Here is what the support guy said, but I don’t know how to do what he says?
“You could try swapping out the code in the index.php file for the code in the left-sidebar template. I think that would accomplish it.”
“I would try making an index.php file in your child theme folder and then just pasting in the left-sidebar template into that new file.”
I use HostGator. How would I do this with my file manager?
Forum: Fixing WordPress
In reply to: How to get rid of this top bar?Thanks Rev. Voodoo!