zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How To Add PageNavi to Twenty Eleven WordPress Theme ?@robirizarry I did try to do it that way first, it would be better, but I couldn’t get it to work for me.
Forum: Themes and Templates
In reply to: Twenty Eleven Modifications#branding {border-top: 0;}would remove the border in the header.
#branding .only-search #s {display: none;}will hide the search, or you could remove it from the header.php file.I haven’t used the showcase template yet and I’m not sure if you just want to remove where it says “Recent Posts” but this would hide that
h1.showcase-heading {display:none;}If you want to remove the feature, then you’d have to edit showcase.php probably line 152-205 but I haven’t tested that.To remove the border around images try this
img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img { border: 0; }This is assuming you’re using a child theme.
Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Showcase Featured Slider in HeaderDid you manage to figure this out?
Forum: Themes and Templates
In reply to: Twenty Eleven Header rotatorTrue, that’s been a feature for a while, even in Twenty Ten. But that’s different than what I was looking to do. I was trying to turn the header into a featured image slider sort of.
A random image from any post that has a featured image would display on the homepage, sort of how the showcase template works. I know that can be modified to auto slide through images, maybe there’s a way to add it to the header.
Forum: Themes and Templates
In reply to: Make TwentyEleven nosidebar wider?Using this might be better, it won’t effect the other layouts.
.one-column #page { }Forum: Plugins
In reply to: [SocialGrid] [Plugin: SocialGrid] WordPress 3.1 Can't Move Nav Menu ItemsGot it working, I downloaded an earlier version of the plugin and replaced the /js folder in the new version with the old version and it seems to be working fine with no menu errors.
Forum: Themes and Templates
In reply to: Twenty Eleven Post FormatsFigured this out, didn’t even notice the content-single.php
Forum: Plugins
In reply to: [SocialGrid] [Plugin: SocialGrid] WordPress 3.1 Can't Move Nav Menu ItemsYeah just noticed the same issue, still not updated.
Forum: Themes and Templates
In reply to: How To Add PageNavi to Twenty Eleven WordPress Theme ?Figured I’d add this. If you want it to show on category pages, you’ll need to edit category.php and edit line 44 the same way index.php was edited in the above post.
Forum: Themes and Templates
In reply to: Bio disappear below posts in TwentyElevenAh I see why.
<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?>
in content-single.php removeis_multi_author()to have it show as it did in twentyten.Forum: Themes and Templates
In reply to: Bio disappear below posts in TwentyElevenI was wondering this too. I filled out the author biography but it doesn’t display.
It’s displaying here
http://twentyelevendemo.wordpress.com/2011/05/04/featured-posts-in-twenty-eleven/Forum: Themes and Templates
In reply to: TwentyEleven headers in child themeThat was it,it works fine now, thanks
Forum: Themes and Templates
In reply to: How To Add PageNavi to Twenty Eleven WordPress Theme ?Just tried to add this to a child theme and got it working.
First create a functions.php for your child theme and add// Show Wp-PageNavi when it's active function twentyeleven_child_content_nav( $nav_id ) { global $wp_query; if ( $wp_query->max_num_pages > 1 ) : ?> <?php /* add wp-pagenavi support for posts */ ?> <?php if(function_exists('wp_pagenavi') ) : ?> <?php wp_pagenavi(); ?> <br /> <?php else: ?> <nav id="<?php echo $nav_id; ?>"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyeleven' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></div> </nav><!-- #nav-above --> <?php endif; ?> <?php endif; }Next copy index.php to your child theme folder and change line 31 to
<?php twentyeleven_child_content_nav( 'nav-below' ); ?>If wp-pagenavi is installed it will show it, if it isn’t, it’ll show the default next/previous
Forum: Themes and Templates
In reply to: fluid width content areaThanks, that didn’t work though. if I set it to say 70%, it looks ok with a wide sidebar, but not with a narrow one, it won’t increase/decrease in width depending on what width the sidebar is.
Forum: Themes and Templates
In reply to: Trouble adding image above the headerHard to help you if I can’t view the site. You can usually reduce the space between the content and nav by adjusting the padding of #main, you’ll have to check what class the weaver widget uses (it’s listed on the widget area in admin options>widgets I think) and reduce the padding and adjust it to where you want.
Also, if you’re using Weaver, you might get a more accurate answer on the weaver forums if that doesn’t work.