Gary LaPointe
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Meetup] Great Start Look Forward to MoreI said the same thing, I’ve got a long group name and it just kept printing it. Made the widget list very crowded.
Forum: Reviews
In reply to: [WP Meetup] Doesn't work. Don't botherI disagree, I saw quality support answers in their free forums.
Forum: Plugins
In reply to: secure wordpress plugin deactivatedI just started getting it too. It’s on a few sites where I’d installed Secure WP (I think). And it doesn’t seem to have Secure WP installed any more. Maybe I’m wrong and it was just one of the sites where I’d upgraded some plugins.
Maybe I’m wrong and I didn’t install it there, but I thought I did. I put it on a few sites and I thought a few that I noticed this on was one of them….
Gary
Forum: Fixing WordPress
In reply to: Username showing instead of nickname on author archives pagesLinking to the nickname makes so much more sense to me (even if displaying the the person’s full name). When we link to the username we’re giving away half the battle of hacking into someone’s account. Linking to the nickname would be better.
Yes many usernames are guessable, but if the author page links are going to give away the username, what’s the point of making my username be gary23890324?
Gary
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Preload specific URLs@w3r3w0lf
I’ve been thinking of the same think. What did you ever decide to do for this?I know what my 10 most popular pages are so I thought of manually coding them just so they’re never slow, I’m not concerned with speed.
And sometimes I see that the page is in the WP-Cache AND the WP-Super-Cache: It seems like some browsers get one and others get another (I can open in several different browsers and get several different creation times).
(And does it store a different copy for serving up compressed copies? If so, how to create that too).
Gary
Forum: Plugins
In reply to: [WP Super Cache] Understanding PRELOAD in WP Super Cache SettingsIt’s definitely preloading the OLDEST posts first when precaching with a fixed number. I could tell by the e-mail updates (I don’t think I got those before, maybe my other host blocked them).
Any thoughts,
GaryForum: Alpha/Beta/RC
In reply to: wp2.7 BUG on – wp_list_comments()I’m using 2.8.2 and I’m getting the opposite.
I’ve got a comment and a trackback and it only says one response.
Gary
http://GarySaid.com/Forum: Fixing WordPress
In reply to: Automatic Upgrade does NOTHINGIt did fix my few problem plug-in upgrades!
Gary
http://GarySaid.com/Forum: Fixing WordPress
In reply to: Automatic Upgrade does NOTHINGFor upgrading to 2.71 the .htaccess fixed my problem on 1and1!
I’m wondering if it will help with the few plugins that don’t work. (Some plugins upgrade fine).
Gary
http://GarySaid.com/Forum: Fixing WordPress
In reply to: Tags with 0 posts>I tried using the excellent Simple Tags plug-in but, when I sort by “least used”, the extra tags don’t show up.
I’ve mentioned this to the Simple Tags author too. I’d like to get rid of them myself…
Gary
Forum: Fixing WordPress
In reply to: How to display a list of all categories on a pageActually, it’s not letting me properly pass my code in 🙁
(using code or blockquote or backticks)Forum: Fixing WordPress
In reply to: How to display a list of all categories on a pageI’m using this (which I got from somewhere else)
<?php
$categories = get_categories();
foreach ($categories as $cat) {
if ($cat->category_parent != 0) {
echo '<span style="padding-left:10px;">';
}
echo 'category_nicename.'/">'.$cat->cat_name.' ('.$cat->category_count.')';
if ($cat->category_description != '') {
echo ' - '.$cat->category_description;
}
if ($cat->category_parent != 0) {
echo '</span>';
}
echo '
';
}
?>
And it indents the subcategories BUT it lists them in alpha order, not the hierarchy.Gary
Forum: Fixing WordPress
In reply to: get_categories hierarchy=1 not workingThanks! That’ll keep me busy reading for a bit!
Forum: Fixing WordPress
In reply to: get_categories hierarchy=1 not workingMichaelH,
So are you saying we can somehow use wp_list_categories (instead of get_categories) and have it sort the list for us properly? Similar to @metepyers first example?
Can you help with the passing of the parameters? I’m note sure if I need echo=0, echo=’0′, echo=”0″, “echo=0”, $echo=0, etc… (And obviously we need it hierarchical). I haven’t played with parameters much and just can’t get this…
Thank you,
GaryForum: Fixing WordPress
In reply to: get_categories hierarchy=1 not workingI’ve Googled all around on this too. Seems like a pretty simple thing. Seems like the solution would already be posted somewhere 🙁