kiara
Forum Replies Created
-
Forum: Plugins
In reply to: [Twit Connect] [Plugin: Twit Connect] No button displaying?I have the same (or a similar?) issue. Except, I *do* get PART of the button (a few pixels wide but not the whole button).
I took your advice and disabled ALL of my plugins (not just the ones that use javascript) and there was no change. I also tried tweaking the CSS of the button (with Firebug) and no change.
I’m using WP 3.0.3 and version 2.56 of the plugin – which I’m assuming is up to date, since I installed via admin panel.
I even tried updating my template manually vs letting the plugin insert the code itself, with no change. I’m only displaying it on single pages, not sure if that makes a difference.
Website here, if you’d like to take a look: https://waitingforfairies.com
Forum: Fixing WordPress
In reply to: Using blog pages with multiple loopsOk, here’s what I figured out for a work-around for my site. Maybe it could be useful to someone else as well. First, I placed all the code for my additional loop(s) in wpLoop.php. Second, I created a “normal” loop file and called it wpLoop2.php.
Then, I went to my index.php file and used the following code:
<?php get_header(); ?>
<?php if (is_home()) { ?>
<?php include (TEMPLATEPATH . "/wpLoop.php"); ?>
<?php }else{ ?>
<?php include (TEMPLATEPATH . "/wpLoop2.php"); ?>
<?php } ?>This code makes the pagination work properly instead of returning to the same old loop. I hope it helps.
Forum: Fixing WordPress
In reply to: Using blog pages with multiple loopsIt would be wonderful if someone had figured a solution for this, as I am having the same issue. I’m running 3 loops on my main page, each calling the latest post from one of three authors. This works fine, however, whenever I try to go back a page in pagination or filter by a category, it simply returns me to the same loop. Does anyone have an easy answer for this? (Or I’ll take even a hard one at this point.)