mattcrace
Forum Replies Created
-
Forum: Plugins
In reply to: BumpBox – Mootools FLV Lightbox Not WorkingWould really like to get the bumpbox to work but having no luck. Has anyone figured out how to implement this?
The instructions are for adding the string of code to an html page not within a wordpress .php site.Forum: Plugins
In reply to: Slidepress – How to link images to pagesyou’ll want to select “Launch Hyperlink” Under Content Area > Action.
From there, in the media editor where you’re adding your images, their title, and caption, you can put your hyperlink into the description field, save your changes, and the image and caption area should launch that hyperlink in the same window.
I am using a setup that consist of slidepress, nextgen gallery and slidepress to nextgen bridge and cannot get my images to link to “their” pages.
I have selected “Launch Hyperlink” in the content area for action. I have add the url to the page I want to link to in the description of the nextgen gallery. No luck for me?
Is it the bridge holding me up?
combiningpixels.comForum: Fixing WordPress
In reply to: css style superfish header | keep active page link different colorWith the help of xiabolai and this thread I was able to achieve most of what I wanted. Problem now is xiabolai did not include a “blog” page with his and I’m wanting to include a blog. When I include the “blog” the “work” link stays hightlighted. I do not know .php and could use some help on getting this sorted.
My Siteheader.phph
<!-- Navigation --> <ul class="sf-menu"> <li <?php if (is_home()) { echo " id=\"current\""; }?>> <a href="<?php bloginfo('url') ?>">Home</a> </li> <!--<li class="cat-item">--> <li class="<?php if ( is_category() or is_single() or (function_exists('is_tag') and is_tag()) ) { ?>current-cat-parent<?php } else { ?>cat_item<?php } ?>"> <a href="#">Work</a> <ul class="children"> <?php wp_list_categories("exclude=$blog_ID&title_li=");('orderby=name&title_li='); $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&show_count=0&title_li= &use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } ?> </ul> </li> <li <?php if (is_page('About')) { echo " id=\"current\""; }?>> <a href="<?php bloginfo('url') ?>/about">About</a> </li> <li <?php if (is_page('Contact')) { echo " id=\"current\""; }?>> <a href="<?php bloginfo('url') ?>/contact">Contact</a> </li> <!--<?php wp_list_categories("include=$blog_ID&title_li="); ?>--> </ul>
Forum: Themes and Templates
In reply to: menu parent/subcategories question…have tried EVERYTHINGI see you got this sorted. Could you share with me the secret, I am going crazy too! I’m on 3 hours sleep right now because of this.
Forum: Fixing WordPress
In reply to: css style superfish header | keep active page link different colorfigured the <a href links in the header.php code would be a dead give away.