bespokeordie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: $wp_query, &paged, and page navigationSo, to close up the post, the short answer is that with the “&paged” and “$wp_query” the Lester Chan pagination does not work. The answer is much more complicated than I profess to understand. But, the standard pagination code does work.
Forum: Fixing WordPress
In reply to: $wp_query, &paged, and page navigationI have tried it with it and without it, but had no luck.
I read this article, maybe the Lester Chan plugin does not work with my query code then?
Forum: Fixing WordPress
In reply to: .php template help – query stringstill trying. ??
Forum: Fixing WordPress
In reply to: Tag Archive Pagination…bumpy
Forum: Fixing WordPress
In reply to: Tag Archive Pagination…Thanks for the help. I don’t use Lester Chan’s plugin, but essentially the same code is hardcoded in to the theme. Using his plugin causes a fatal error.
I have specifically tried this on Tags where I know there should be several pages. Like “shoes” for example. Yet, still no luck. weird.
Forum: Fixing WordPress
In reply to: .php template help – query stringAnyone have any fresh thoughts? I would really like to make this work.
Forum: Fixing WordPress
In reply to: .php template help – query stringbump bump bump.
Forum: Fixing WordPress
In reply to: .php template help – query stringbump?
Forum: Fixing WordPress
In reply to: .php template help – query stringBumpy?! So I tried a variant of this code:
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(…I thought I was on to something, but again, no such luck. Is this code really that hard to figure out?
Forum: Fixing WordPress
In reply to: .php code help,no other loop, i’ve tried this a thousand different ways. I know I am missing something basic.
Forum: Fixing WordPress
In reply to: .php code help,Ha ha, I think I hope I haven’t become that annoying guy that no one likes now.
Forum: Fixing WordPress
In reply to: .php code help,This is very aggrivating. I have done a ton of research and this should work:
<?php query_posts($query_string.’&posts_per_page=30′); while(have_posts()) {
the_post();
woo_get_image(‘image’,’thumbnail’,”,”,’thumbnail gallery’);
}
?>But, no such luck.
Forum: Fixing WordPress
In reply to: .php code help,I tried this a few different ways and had no luck. Can you show me an example? I inserted my loop into that code (Example 3) and got nothing. I couldn’t get it to work with my loop at all.
I tried this and it appeared to work, but when you click on the next page link the same images appear:
<?php query_posts(‘&posts_per_page=60’); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $wp_query->is_home = false; ?><?php woo_get_image(‘image’,’thumbnail’,”,”,’thumbnail gallery’); ?>
<?php endwhile; endif; ?>
Forum: Alpha/Beta/RC
In reply to: 2.8 RC 1 – wp-ratings plugin now throwing sql errorIssue resolved, thank you for the updates Lester!!
Forum: Alpha/Beta/RC
In reply to: bbPress IntegrationI don’t have that line of code in my bb-config.php file.
I am running the bbPress Integration Plugin in WordPress.
So, if what I am reading is right. I either need to find a hard coded fix or wait for an update to this plugin?