foochuck
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Detecting Page Template in Header.phpOne other question on this topic – how can I do the same thing to test what page is currently being used? Would I need to test the page ID or page title?
Forum: Fixing WordPress
In reply to: Detecting Page Template in Header.phpAwesome. Thank you @rev. Voodoo!
Forum: Fixing WordPress
In reply to: (Urgent)how Link images to blog post in gallery.I’m also trying to figure out a solution for this. I have my gallery all setup, but I need to link to pages on my WordPress site instead of the image file or attachment page.
-foo
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Remove Break Tag From Bottom of Tables*bump*
I noticed that when you use this plugin and add more than one table on a page, it automatically generates the
<br />tag under each table and I need to prevent it from doing that!-foo
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Floating Tables@sultan1994 Get that spam out of here.
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Floating TablesI’ve figured out that my problem is coming from the break tag that’s generated at the bottom of each table:
<br />I can’t figure out where in the plugin’s files that this break tag gets generated. Does anyone know?
-foo
Forum: Fixing WordPress
In reply to: Filter a Specific Category Out of an RSS Feed@wprelief It works perfectly. Thank you.
Forum: Fixing WordPress
In reply to: PHP Code for Absolute URL@alchymyth Awesome, that does the trick. Thanks
Forum: Fixing WordPress
In reply to: WordPress 3.0 Drop-Down Menus?@rvoodoo – I turned the Twenty Ten theme on for my site and the button that had a menu item underneath it didn’t even show up.
Is there any other plugin method to implement a drop-down menu system?
Forum: Fixing WordPress
In reply to: WordPress 3.0 Drop-Down Menus?@rvoodoo – I modified the theme. Perhaps it’s a CSS issue. Thanks for the tip.
Forum: Fixing WordPress
In reply to: Filter a Specific Category Out of an RSS Feed@wprelief Awesome tip. I’ll try that out. Thank you!
Forum: Fixing WordPress
In reply to: Widget to Display a Specific Category’s Recent PostsI found the plugin:
‘Enhanced Recent Posts’
Which works great for this and it runs fine in WordPress 3.0
Forum: Fixing WordPress
In reply to: Insert a Page Excerpt into my Main Index@curtismchale – Here’s what I want to accomplish with my homepage:
display an excerpt feed from a single page
display an excerpt feed from a category (showing 5 latest posts)
I’m not sure how to use
query_poststo query a page and a category.
`Forum: Fixing WordPress
In reply to: Insert a Page Excerpt into my Main Index@curtismchale – How do I query the page id? Here’s the loop code I’m going to use – I’m not sure how to query pages as they are using in_category(‘3’). My page ID is 2.
<!-- Start the Loop. --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- The following tests if the current post is in category 3. --> <!-- If it is, the div box is given the CSS class "post-cat-three". --> <!-- Otherwise, the div box will be given the CSS class "post". --> <?php if ( in_category('3') ) { ?> <div class="post-cat-three"> <?php } else { ?> <div class="post"> <?php } ?> <!-- Display the Title as a link to the Post's permalink. --> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. --> <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small> <!-- Display the Post's Content in a div box. --> <div class="entry"> <?php the_content(); ?> </div> <!-- Display a comma separated list of the Post's Categories. --> <p class="postmetadata">Posted in <?php the_category(', '); ?></p> </div> <!-- closes the first div box --> <!-- Stop The Loop (but note the "else:" - see next line). --> <?php endwhile; else: ?> <!-- The very first "if" tested to see if there were any Posts to --> <!-- display. This "else" part tells what do if there weren't any. --> <p>Sorry, no posts matched your criteria.</p> <!-- REALLY stop The Loop. --> <?php endif; ?>Forum: Plugins
In reply to: [Plugin: Digg Digg] Mashable like widgetThanks @mkyong, it works great!