Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove sidebar DIFFERENT issueLooks like RTF (Rich Text Format), but I haven’t got a clue what generates this. Maybe a plugin?
Peter
Forum: Themes and Templates
In reply to: Dynamically create sidebars?Just to help you going:
<ul id="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar($post->ID)) { if ( function_exists('register_sidebar') ) { register_sidebar(array( 'id' => $post->ID, 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', )); } dynamic_sidebar($post->ID) } ?> </ul>Not tested!
Peter
Forum: Themes and Templates
In reply to: Dynamically create sidebars?I realize that code is not dynamic. If you define say 3 different sidebar layouts, you could create a custom field on each page called Sidebar, and assign a value of Sidebar1, Sidebar2, or Sidebar3.
Done that here
I think it’s possible to create a page template that holds the code for checking whether a sidebar exists, and if not create one, and use the page ID as sidebar ID.
Never done it, but maybe you can 🙂
Peter
Forum: Themes and Templates
In reply to: ‘older posts’ / page links not workingCan you show us the contents of your .htaccess in your webroot?
Peter
Forum: Themes and Templates
In reply to: ‘older posts’ / page links not workingYou never-ever-ever need to edit wp core files to change the looks of your site, all of that is done through your template files.
Go and see if you find this function in your template files (of your theme): wp_list_pages
Somewhere in this directory: wp-content/themes/JENIWREN/
oh: DON’T EDIT ANYTHING YET!!! 🙂
Peter
Forum: Themes and Templates
In reply to: ‘older posts’ / page links not workingYou are a bit trigger happy, ermm, edit happy, right? 😉
Are you actually editing WP core files?
Peter
Forum: Themes and Templates
In reply to: ‘older posts’ / page links not workingYou probably have the following code in your header.php:
<?php wp_list_pages('title_li='); ?>which makes the pages display as a list. That part needs to be removed.
Can you post the contents of your header.php on this site and post the link to it here?
Peter
Forum: Themes and Templates
In reply to: ‘older posts’ / page links not workingyour category links do the same (or all posts are in all categories)…
Peter
Forum: Themes and Templates
In reply to: ‘older posts’ / page links not workingLooks like all links don’t work (try ‘about’ or ‘cv’).
Did you change something in your .htaccess (or did one of your plugins do that)?
Peter
EDIT: forget that about the about/cv page: NoScript blocked linkwithin.com, which obviously prevented me from clicking these links.
Forum: Themes and Templates
In reply to: i need help for my website layoutDid you solve it, since I cannot find the obvious .htaccess text anywhere…
Peter
Forum: Themes and Templates
In reply to: Toilet blogI would do it for free (only for the credits) if I only had time…
Peter
Forum: Themes and Templates
In reply to: DESPERATE for help with author image.You have to upload the image to here:
/wordpress/wp-content/themes/claytor/images/users/harrypolkinhorn.jpg
Since it don’t exist, it shows the alternate text.
Peter
Forum: Themes and Templates
In reply to: Toilet blogPreferably a dark theme or one that would remind you of a dark dirty public bathroom.
And where the posts are written on a piece of toilet paper….
Sounds like a cute idea for a theme (although I think the content would be kinda disgusting 😉 ).
I don’t know if such a theme exists.
Peter
Forum: Themes and Templates
In reply to: custom pages?If you have access to the themes directory with ftp, you can use any IDE you like.
Peter
Forum: Themes and Templates
In reply to: Complete Custom Theme Question…I second jrav001’s comment.
Peter