thelocallanding
Forum Replies Created
-
Forum: Plugins
In reply to: Don’t show sub pages on password protected pageHmm. Can you give a little more info on where/how to use that code, fullthrottle? I’m having the same problem as sccr410.
Forum: Fixing WordPress
In reply to: Password protect group of pages rather than sectionThis is an excellent question and something I would like to be able to do. Does anyone know a way it can be done?
Forum: Plugins
In reply to: simple posting plugin For wp 2.7?There is a “post from site” plugin HERE, but it’s pretty basic, and still needs a lot before it’s as useful as it could be. I don’t know enough about the coding, but if a plugin like this could be combined with the quickpress functionality from the dashboard, that’d be PERFECT. I’m looking to do the same thing as Blogfreak, which is to let users of my site post a post without ever seeing the admin/wordpress side of things.
I’ve also used TDO Mini forms but it’s too involved for my tastes. I’m not looking for a different type of post for people to make, just an easier way for people to make them.
Forum: Plugins
In reply to: Posts by Category and AuthorThat only seems to show the page that the loop appears on… I set it to category 5, but it showed that author’s profile page, and said it was filed under ‘Uncategorized’.
It does seem to pull posts by the right author, but that’s about it. I’m out of ideas.
Forum: Plugins
In reply to: Help to display random post from one catI had something very similar to mserafim’s code, and all I needed to randomize the list was the &orderby=rand after cat=5&showpsots=1
works fine! Thanks Dunkkan.
Using mserafim’s example, it would now look like this:
<?php $recent = new WP_Query("cat=5&showposts=1&orderby=rand"); while($recent->have_posts()) : $recent->the_post();?> <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b> <?php the_content_limit(130, ""); ?>
Forum: Fixing WordPress
In reply to: Display today’s postsIs there no code to have a list of posts start and/or stop at a specified date? The current date?
??
https://englishmike.net/azindex-plugin/
AZ Indexes has been working well for us. Let’s you index posts by category or tags, and create your own custom css for each index.
Forum: Fixing WordPress
In reply to: Default User Photo?haha. more obvious than i expected. Thanks westonruter!
Forum: Fixing WordPress
In reply to: Add Media “Choose Files To Upload” Not WorkingI’m having the same problem with the add/upload files buttons above each post. They were working fine a couple weeks ago like everyone else has been saying, but are not working now. I’m using wordpress 2.7 and firefox. When I click any of the buttons i get a message saying
“Are you sure you want to do this?
Please try again.”
Please try again is a link that, when clicked, takes me to the edit posts page within the popup window itself. Very strange. Anyone figured this out yet?