nex2nun
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Highlight Parent and Child pagesThere I go, thinking outside the box again.
I removed my previous conditional array and made sure I had the correct styles in place, those being:
#nav .current_page_item a { color: #264971; background-color: #D8E7EC; } #nav .current_page_parent a { color: #264971; background-color: #D8E7EC; }
And then adjusted my wp_list_pages a bit:
<div id="nav"> <ul> <li class="page_item <?php if (is_home()) { echo "current_page_item"; } ?>"><a href="<?php echo get_settings('home'); ?>">Home</a></li> <?php wp_list_pages('title_li=&depth=1'); ?> </ul> </div>
Kept child pages as they were:
<?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <ul class="menu"> <?php echo $children; ?> </ul> <?php } ?>
And all works well!
Forum: Themes and Templates
In reply to: [Plugin: Register Plus] making an all authors pageThis is just what I was looking for, thank you!!!
Forum: Themes and Templates
In reply to: CSS and IE7 ProblemsAfter reworking some id properties I think I got it all ironed out. Why can’t all browser just get along?
Forum: Fixing WordPress
In reply to: WordPress.com import halts.Not a popular subject apparently.
I did manage to get my entire export file to import into my hosted WordPress blog. It wasn’t easy!
I had to scramble the export file and creature separate files (10 to be exact). I had to run some files more than once but if finally got everything to move over.
Forum: Themes and Templates
In reply to: Random Post from a categoryHave a look at this similar request in the forums.
https://www.ads-software.com/support/topic/171753?replies=10
Hope this helps!
Derek M.Forum: Themes and Templates
In reply to: Footer Help!I believe this answer may address both of your questions. I would assume that your footer information is making use of widgets. Here is some more information about widgets.
WordPress Codex: Plugins/WordPress Widgets
Hope this helps!
Derek M.Forum: Fixing WordPress
In reply to: php code help – category postsWhat error were you getting?
Forum: Fixing WordPress
In reply to: missing theme messupYou may need to manually reset the site url. Here are some instructions on how to do that.
WordPress Codex: Changing The Site URL
Hope this helps!
Derek M.Forum: Fixing WordPress
In reply to: right column loads slowGlad to hear you found the problem. Nice work.
Derek M.
Forum: Fixing WordPress
In reply to: How do I put post headings on my homepage?Here are a couple of articles that may help.
Creating a static front page on your WordPress blog
WordPress Codex: Creating a Static Front PageForum: Themes and Templates
In reply to: Menu from imageIt could very easily be created with a horizontal menu using css.
Here are a couple of guides to get you started:
Dynamic Drive CSS Library
ListamaticHope that helps!
Derek M.Forum: Fixing WordPress
In reply to: right column loads slowWhen you setup the test blog did you create a new database connection or use the pre-existing one you use with your current blog? Also did you move all plugins to the test blog?
I found a good read on someone with similar troubles and here he outlined his steps to resolving the issue.
Again if you setup the test blog with the same plugins you used by doing that it could have reactivated the plugin, resolving any issues. Have you tried disabling your plugins and then re-enabling them to see if that helps any?
Wish I could tell you where exactly to look. My apologies there!
Derek M.Forum: Fixing WordPress
In reply to: php code help – category postsTake a look at the end of your loop, what if you try this.
<?php endforeach; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>
If there are not posts found, returns message:
Sorry, no posts matched your criteria.
Hope that helps?
Derek M.Forum: Fixing WordPress
In reply to: How to make an excerpt longer?Here’s a nice resource on using Custom Fields for creating article images.
Web Designer Wall: WordPress Theme Hacks
Thanks,
Derek M.Forum: Everything else WordPress
In reply to: Changing e-mail address in this forumYou are not alone – https://www.ads-software.com/support/topic/202126?replies=15.
Doh!
Derek M.