James Spratt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Displaying all posts in a list at …/category/categoryNameRight.
You need to create a whole new php sheet: category.php
then include amongst your other stuff this:
<div class="post" id="post-<?php the_ID(); ?>"> <h4><?php single_cat_title('Full category post listings for: '); ?></h4> <ul> <?php while(have_posts()) : the_post(); ?> <?php foreach((get_the_category()) as $category) { $my_query = new WP_Query('category_name=' . $category->category_nicename . '&orderby=date&order=des&showposts=100');} ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> • <?php the_time(' jS F Y'); ?></li> <?php endwhile; ?> <?php break; endwhile; ?> </ul>Outside of the loop, i.e. take out the normal loop references.
Forum: Fixing WordPress
In reply to: Displaying all posts in a list at …/category/categoryNameHey,
Did you ever work this out, I’m after the same thing.
Thanks,
James
Forum: Plugins
In reply to: [Plugin: Twitter Tools]Upgraded to v2.0 but the weekly digest still doesn’t post.
🙁
Forum: Fixing WordPress
In reply to: [Plugin: Tabbed Widgets] Widget List Not Showing Some WidgetsRight, seen what’s going on now.
1. You should have edited your functions.php so it looks something like this:
<?php if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'sidebar', 'before_widget' => '<div id="%1$s" class="%2$s box">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3><ul class="link-list">', )); } ?>2. In your normal widgets page you’ll notice there’s an additional sidebar in the dropdown menu on the right called ‘Invisible Widget Area’. Select this, drop the widgets you want to use in your Tabbed Widgets (i.e. the ones that aren’t showing up). Now save that.
3. Now go to the ‘Tabbed Widgets’ page under Appearance. Select one of the dropdowns and hey presto – there are your elusive widgets you were after.
4. You’re welcome.
Forum: Fixing WordPress
In reply to: [Plugin: Tabbed Widgets] Widget List Not Showing Some WidgetsYep, needing the same, Categories not showing up. Tried to fix it by putting in the wp_list_categories code in a text tab then including that but even that doesn’t come up. Bit frustrating with what is otherwise a great bit of pluggage.
Forum: Themes and Templates
In reply to: Used widgets not showingExcellent, nice one Justin, your plugin saved my weekend.
Forum: Plugins
In reply to: Twitter Tools 1.6 – Digest (weekly/daily)Yep, was pleased that the new release came out so I set my weekly digest and nothing came out either.
Sorry Alex but I’m not going to pay a consulting fee to have it fixed, I guess we’ll just have to wait disappointed until the next release.
Am currently copying and pasting a weekly digest to my site instead, which is stupid.
Platform: Linux
WP: 2.7.1
TT: 1.6Forum: Plugins
In reply to: [Plugin: Subscribe to Comments] wp 2.6.2?Yep.
Although hoping to get rid of it if the 2.7 comments changes covers this.
Forum: Themes and Templates
In reply to: Crybook Theme Admin Setting errorAm getting the same error. Trying to chase this with the author here:
Forum: Installing WordPress
In reply to: Error establishing a database connectionPS: Have tried the IP address instead and that doesn’t work either.
Forum: Installing WordPress
In reply to: Error establishing a database connectionBump – me too, anyone?
Forum: Plugins
In reply to: [Plugin: iPhone / Mobile Admin] Fatal errorBump, yep fatal error here too.
Any chance of this being updated?
And I’m hoping this fits with Blackberries too.
Forum: Plugins
In reply to: Lightweight social bookmarking plugins?I just went with addthis.com but am now finding that it’s a little bit slower than I’d like. Still looking.
Forum: Fixing WordPress
In reply to: How can I add the search to the header?@jeremyclark13 – thanks
Forum: Fixing WordPress
In reply to: add search box in headerHey,
I’m also trying to do the same thing but place the Search box to the right of my header title. There’s a bit of disused space there that I’d like to use instead of placing the search box in a sidebar.
Any help much appreciated.
Cheers,
James