Daven
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-UserLogin] Using PluginThis is designed to be used for installations of WP that are hosted on their own site. If you are using the one that WP hosts, the plugin won’t work.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Link errorJust got the update. That fixed it. Thank you so much.
Forum: Plugins
In reply to: [WP-UserLogin] OpenIDDidn’t ruin my day, but I chose your plugin because it supported OpenID. It was nice to have the option for those who were logging into the site. So, glad to know it will be coming back. Thank you.
Forum: Plugins
In reply to: [Category Icons] [Plugin: Category Icons] Multiple parameters in wigetresolving the thread
Forum: Plugins
In reply to: [Category Icons] [Plugin: Category Icons] Multiple parameters in wigetNevermind, I found the solution.
You put this statement in that parameter window:
small=true&class=myicons
Works like a charm. Had to do more digging on his site.
Forum: Fixing WordPress
In reply to: Blank backend , cant edit pages after update to 3.4Why when my topic is the same as these? I upgrades to 3.4 and I can’t see to edit any post. That’s the problem I’m having with all my WP enabled sites. It’s not the theme, it’s not the plugin. It’s the program itself.
Forum: Fixing WordPress
In reply to: Blank backend , cant edit pages after update to 3.4I have three WP installs, each with different sets of plubins, and NONE of the sites have a backend edit or new post pages where I can add or edit text, all of them are blank.
Themes are different
plugins are different,
the only similar thing is that it’s WP 3.4
This is a bad error that needs to be fixes.Forum: Themes and Templates
In reply to: Breadcrumb navigationAh, that’s why….
Pages don’t HAVE categories. Duh.
Using Page Category Plus plugin to do it, and now it looks like there’s something coming to roost with that. Hmmm…. What code do I need to do this….
Forum: Themes and Templates
In reply to: Breadcrumb navigationOkay, I tried different themes. When I use this code:
<div id="postpath"> <a title="<?php _e('Go to homepage'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home'); ?></a><img src="/images/redarrow.png" /> <?php the_category(', '); ?> <img src="/images/redarrow.png" /> <?php the_title(); ?> </div>I don’t have any category in the trail. I’ve tried it on three different themes, Default, a NEW unaltered install of WP-Framework and the modified theme, and it still doesn’t have the category on the pages.
Forum: Themes and Templates
In reply to: Breadcrumb navigationCan I get some sort of help with this, even if it’s just “Man, that’s f***ed up!”
I want to know that people are at least reading it.
Forum: Fixing WordPress
In reply to: Need some pointersHello? Is anyone out there?
Forum: Fixing WordPress
In reply to: Need some pointersI guess no one is willing to help me on this?
Forum: Fixing WordPress
In reply to: Apostrophe in Blog Title rendered #039; in email titlesHas this issue been resolved? I’m having the same problem with my site Daven’s Journal.
Forum: Plugins
In reply to: Override Posts Per PageWorked like a dream. Replaced it at the top of the page, and now I have all the links on one page that I can direct people to in my site.
Thanks WordPress! LOL
Forum: Plugins
In reply to: Override Posts Per PageNevermind, found it. Went hunting on Google. This is what I found:
* Either edit your category.php file, or if it doesn’t exist, copy your index.php file to category.php.
* look for this line:
< ?php get_header(); ?>
and change it to the following:
< ?php get_header(); query_posts( ‘posts_per_page=-1&cat=’ . $cat ) ?>
* That’s all, your finished. The -1 in posts_per_page lets WordPress know you want all posts to be shown and it overrides the setting in your options.Think I’ll go try it out.