Edward Caissie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Create a index.php like page templateThis page may help answer some more of your questions: http://codex.wordpress.org/Template_Hierarchy
It will describe how the template files of a theme work together to display the content of your blog.
Forum: Fixing WordPress
In reply to: hide a link from navigationYou will likely need the page ID of the “Thanks” page then use the exclude=<page-ID> parameter for your menu. In this case I would suspect your menu is being generated by wp_list_pages, or wp_page_menu.
See these pages for more details, if need be:
http://codex.wordpress.org/Template_Tags/wp_list_pages
http://codex.wordpress.org/Template_Tags/wp_page_menuThis is also most likely theme dependent as well …
<edit>Glad you found a solution while I was writing this post ;-)</edit>
Forum: Fixing WordPress
In reply to: Adding a static link in a dynamic menu – possible?Off the cuff …
You will have to edit the function sandbox_globalnav() in the functions.php template file.
function sandbox_globalnav() { if ( $menu = str_replace( array( "\r", "\n", "\t" ), '', wp_list_pages('title_li=&sort_column=menu_order&echo=0') ) ) $menu = '<ul>' . $menu . '</ul>'; $menu = '<div id="menu">' . $menu . "</div>\n"; echo apply_filters( 'globalnav_menu', $menu ); // Filter to override default globalnav: globalnav_menu }Change the line:
$menu = '<ul>' . $menu . '</ul>';to:$menu = '<ul>' . $menu . '<li><a href="http://link-to-your-gallery">Gallery Link</a></li>' . '</ul>';… untested, but it should work (or at least get you started) …
Forum: Fixing WordPress
In reply to: categories and postsHave you looked at BNS Featured Category?
Forum: Themes and Templates
In reply to: Sidebar widgettitles?A link to your blog and the current active theme you are trying to edit would be very useful in making suggestions for you to use.
The calendar issue is being addressed in trac, here is the ticket: http://core.trac.wordpress.org/ticket/11414
You may want to offer your solution there …
Forum: Fixing WordPress
In reply to: hiding post timesThe time is being displayed with this code (snippet, around line 11):
<small>Posted in <?php the_category(', ') ?> on <?php the_time('F jS, Y') ?>This is found in your index.php file, and most likely several other template files. If you remove the part:
on <?php the_time('F jS, Y') ?>the time should no longer be displayed.Forum: Fixing WordPress
In reply to: white box, red xThe white box with the red “X” is likely a placeholder for a broken graphic link, you will need to upload a graphic with the exact same name to the exact same place the original was stored … or you will need to edit your theme to correct the broken link.
Forum: Themes and Templates
In reply to: Create a index.php like page templateI believe you are wanting to make a category template, see this page in the codex for more details: http://codex.wordpress.org/Category_Templates
Forum: Plugins
In reply to: Remove Plugins From DirectoryHave you tried sending a request to: plugins@wordpress.org?
… and, perhaps, update the
readme.txtfile(s) to explain your discontinued support and recommended alternatives?There may even be other plugin authors willing to adopt your work(s) and continue their development, too …
Forum: Plugins
In reply to: Is there a most recent blog box?Although there are numerous recent post plugins available I believe the question is will your theme support the placement you are looking for?
Forum: Fixing WordPress
In reply to: Right hand sidebar not showing on pages (ok on posts)The Green Theme (this one?) does not appear to be designed to show the right column when displaying pages.
Pages and posts are managed by separate template files, page.php and single.php respectively in most themes. To have the right column appear on pages you will have to “tinker” with the page.php file.
Look into the single.php file for references.
Here is some additional reading, too:
http://codex.wordpress.org/WordPress_Lessons#Customizing_TemplatesForum: Fixing WordPress
In reply to: Change Response to CommentI would think you could edit your comments.php template file in your active theme. Just search for the text and replace it with your preferred wording.
Forum: Fixing WordPress
In reply to: Where do I get the return to top floating thing?Although it is not the exact same thing, I believe you may be able to make use of the BNS Corner Logo plugin to accomplish something very similar.
Forum: Fixing WordPress
In reply to: Strike throughsYou can also use the HTML tag <del>
http://w3schools.com/tags/tag_del.asp
Which appears to replace the deprecated ‘s’ and ‘strike’ tags per the link @jdingman provided