Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: why are my blog post underlinedBecause every paragraph starts with
<a name="255">, and your browser thinks they are anchor links.Peter
Forum: Themes and Templates
In reply to: My theme is going crazy!the sidebar is too wide to fit next to container.
Peter
Forum: Themes and Templates
In reply to: No custom logo showing up on homepage<?php if(!is_front_page()) { ?>/" rel="home"><img src="http://www.phocazz.com/IndePhojo.png" border="0" alt="logo"> <?php } ?>“if NOT is_front_page() show image”
Peter
Forum: Themes and Templates
In reply to: Call for the_excerpt() does not display the actual excerptbut it’s going to be difficult to trace…
Nope, not that hard.
Look in the plugins and functions.php (in your theme directory) for this code:
add_filter('the_excerpt'Peter
Forum: Themes and Templates
In reply to: Different theme for page?Maybe this is what you’re searching for.
Peter
Forum: Themes and Templates
In reply to: the-last-fallwhere exactly did you unzip the contents of the zip?
Themes should go into the following directory under webroot:
/wp-content/themes/
Underneath this directory the theme will be in a subdirectory (like ‘default’).
Peter
Forum: Themes and Templates
In reply to: Changing post detailsGet rid of the date in the orange box
search for
<div class="date">in index.php and remove the echo’s that display the date.The other info you want changed is just below that one, in
<div class="postmeta">Peter
Forum: Themes and Templates
In reply to: Display page related content in sidebarYes, it could be done, but you would have to make that part of the sidebar part of the loop.
What kind of info so you want to display in the sidebar?
Peter
Forum: Themes and Templates
In reply to: Call for the_excerpt() does not display the actual excerpthow about plugins?
Any plugins (or functions) modifying the the_excerpt() function?
Peter
Forum: Themes and Templates
In reply to: I still need to know how to move special text widget to the topI expect it to be in the sidebar.php, not in the stylesheet.
can you put your sidebar.php online through pastebin?
Peter
Forum: Themes and Templates
In reply to: Php help – mystery codeIt’s probably a filter of some kind.
Have a look at the file functions.php in your theme directory, and see if you find a function called add_filter (maybe more than one).
copy and paste them (it?) here.
Peter
Forum: Themes and Templates
In reply to: Autumn Forest 1.0 Theme H-E-L-P PleaseNo, I meant replacing the actual jpeg with your picture, preferably the same dimensions. That way you don’t have to modify the code.
Peter
Forum: Themes and Templates
In reply to: Need help adjusting headerthe wp_list_pages() function lists all pages you’ve created, and shows them as list items to create your navigation bar.
Probably three ways to change this behavior:
- stop using wp_list_pages() and create your own menu
- find some plugin to modify the default behavior of wp_list_pages()
- delete some of the pages
Peter
Forum: Themes and Templates
In reply to: How do I change a logo on the theme??A real url would help:
Page Not Found – 404 Error Page
The page you are looking for (http://mysite.com/wp-content/themes/tubular-86542/tubular_10/images/logo.jpg) is not here.Peter
Forum: Themes and Templates
In reply to: previous and next post link as image rolloversYou should create background images in css, and move the text out of the way (text-indent: -9999px;).
A similar solution has been presented here: http://wordpress.org/support/topic/308719