bartsurminski
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Sidebar Missing and Begging to Come BackTake a look here, you’re on the right track with the php get_sidebar.
http://surminski.eu/2011/07/06/add-sidebar-to-single-post-in-the-wordpress-3-2-twentyeleven-theme/
This worked great, thanks!
Forum: Fixing WordPress
In reply to: Single Post as HomepageThanks, i’ve created a workaround by ‘featuring’ my post, so it always shows on top, then i’ve put my homepage to blog posts.
I’ve replaced my home button by a ‘featured’ button, so it will show all my featured blogposts on the page. This way i can make my serious blogpost stand out on the frontpage, and have my secondary blogposts (about wordpress tweaks/solutions etc.) on separate category websites.
Check out http://surminski.eu to see how it looksForum: Fixing WordPress
In reply to: Single Post as HomepageI’m looking for the same functionality, Christina did you figure this out allready?
Forum: Themes and Templates
In reply to: Twenty Eleven Sidebar Template not workingMust say i’m not that into php, copy paste of code is something i’m able to, aligning tables is another story 😉
Forum: Themes and Templates
In reply to: Twenty Eleven Sidebar Template not workingDon’t know the Line number, but i suppose it’s this piece: (only part with H2 in it)
<body <?php body_class(); ?>> <div id="page" class="hfeed"> <header id="branding" role="banner"> <hgroup> <h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1> <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2> </hgroup>Forum: Themes and Templates
In reply to: Twenty Eleven Sidebar Template not workingYou might be able to remove the get_sidebar statement from index.php in the editor.
Open index.php in the editor (under appearance)
Change
</div><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>In:
</div><!-- #primary --> <?php get_footer(); ?>Then click ‘update file’
I haven’t checked it myself if it works, so please backup your index.php.
Hope it helpsForum: Themes and Templates
In reply to: Twenty Eleven Sidebar Template not workingI’ve created a workaround by editting 2 files (or 3 if you want the sidebar on single-post sites as wel.
Check out: http://surminski.eu/2011/07/06/add-sidebar-to-single-post-in-the-wordpress-3-2-twentyeleven-theme/
Pls comment on my post if you have any questions/remarks.