Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Password Protected Pages from menubarYou’re welcome!
Forum: Fixing WordPress
In reply to: Different style for admin and author commentsHi cais, what for a link is needed or helpful ? Its just a style.
… it is your choice. I was only making a suggestion to allow someone to give you a specific answer related to your site and installation. Good Luck.
Go to your administration pages. Click Appearance, then click on Widgets. Now look for the one with the title
RSS.If you need additional help activating the plugin feel free to read this article I wrote: http://wpfirstaid.com/2009/12/plugin-installation/
Forum: Fixing WordPress
In reply to: Remove Password Protected Pages from menubarLine 84 of the header.php template file in a non-edited version of iDream reads like this:
wp_list_pages('title_li=&depth=0&sort_column=menu_order&child_of=0');Edit it to read this:
wp_list_pages('title_li=&depth=0&sort_column=menu_order&child_of=0&exclude=90');This will specifically exclude the page with ID=90 (Clients page) from the navigation menu.
You can alternatively use CSS to hide the link as well … see this article I wrote some time ago: http://buynowshop.com/2009/07/hide-a-menu-page/
Hopefully this will get you looking in the direction you want to go.
Forum: Fixing WordPress
In reply to: Including Title of Entry in a Text WrapIt looks to me if you create a two-column layout for your posts with
entry-contenton the left andentry-headon the right you will be set.The post_class() function should create a wrapping class for you to use with the other classes to specify the columns of your new layout.
An interesting concept, good luck with it!
Forum: Fixing WordPress
In reply to: Make Hyperlink to Internal “hidden from nav” pageI wrote this article a while back, it may be of use: http://buynowshop.com/2009/07/hide-a-menu-page/
Forum: Fixing WordPress
In reply to: Adding Splash PageTry the new template file
front-page.php, or use thehome.phptemplate file to display your “splash” page.See this codex page for more details: http://codex.wordpress.org/Template_Hierarchy
Forum: Fixing WordPress
In reply to: Remove Password Protected Pages from menubarThis is most likely a theme based question, a link to your site and what your active theme are would be useful for someone to offer any suggestions.
Forum: Fixing WordPress
In reply to: Including Title of Entry in a Text WrapThis is a theme specific question … a link to your site and your active theme would be useful for someone to make suggestions from.
Forum: Fixing WordPress
In reply to: A few questions…As far as displaying the track list, I would use something similar to the gallery method I described above.
As to a “plugin” to do the heavy lifting, no idea at the moment … have you tried a Google search?
WordPress Plugin Tracklistgives plenty of results, one may be what you are looking for.Did you try the included default RSS widget?
Forum: Fixing WordPress
In reply to: widget space in the headerAlthough this is theme dependent my general approach would be:
- Add an additional widget definition for the plugin (see functions.php)
- Edit the header.php template file to add the newly defined widget area.
- Style to taste …
Forum: Themes and Templates
In reply to: Add ‘last’ class to menu itemHave you considered the CSS pseudo class
:last-childelement?Here is a great article to help explain: http://css-tricks.com/pseudo-class-selectors/
Forum: Fixing WordPress
In reply to: A few questions…The problem is tha’t the image gallery is also working in pages, and I want it to work in posts only. How would I do it?
My first thoughts would be you may need to edit your theme or the plugin to test with the conditional is_page() function. You can learn more about this function here: http://codex.wordpress.org/Function_Reference/is_page
Forum: Fixing WordPress
In reply to: Link sequenceI’ve modified sidebar.php and list.php in my default theme changing the line
<?php wp_list_bookmarks(); ?>
to
<?php wp_list_bookmarks(‘orderby=id’); ?>
but it doesn’t change the sequence.I just checked on one of my test servers and that should have worked for you. Did you try a “hard refresh” after you made the edit to insure your browser was not showing you a cached page?