mozity
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Fatal error message when upgrading to 3.0I am getting same error upgrading to 3.0.2 I do not have the Podcasting Plugin.
Hi,
I’ve been having exactly the same issue with links sending me to 404 pages…after some investigation/experimentation I believe I’ve stumbled upon a resolution.
Under “Settings” go to “The Events Calendar” and set “Use Pretty URLs” to off and that should fix the issue – at least it did for me.
I’d like to know too. Would you mind sharing how to got the grid view to work?
Forum: Fixing WordPress
In reply to: Multiple templates vs page query to deliver CSSThat looks very much like what I was thinking, then I could deliver a different css tag, or different sheet, or anything else I suppose based on which page is being called.
Thanks very much for the reference. Never created a function before, but it sure looks like it could be very powerful and a good think to learn.
I am really starting to have fun with WP! ??
Forum: Themes and Templates
In reply to: Specific category post titles in sidebarWow, thanks so much for pointing me in right direction!! Worked perfectly.
For anyone else who might want something similar here is my code.
<h2>Noteworthy</h2> <?php // Get 10 posts in the noteworthy category. query_posts('category_name=noteworthy&posts_per_page=10'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); //make sure its in the cat then display. if ( in_category('noteworthy') ) { ?> <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4> <?php } endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria...yet'); ?></p> <?php endif; ?>
Forum: Themes and Templates
In reply to: Getting Category Titles On A PageI have a related question, sort of.
I want to list the titles of posts from a certain category in the sidebar. I read the codex and thought doing some thing like this might work:
< ?php if ( have_posts() ) : while ( have_posts() ) : the_post();
if ( in_category(‘3’) ) { ? >
<h3>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h3>< ?php }
endwhile;
else: ?>
<p>< ?php _e(‘Sorry, no posts matched your criteria…yet’); ?></p>
< ?php endif; ? >But I’m coming up empty. I got the cat id from the categories page under posts. have also tried getting the by the category name, but that doesn’t seem to be working either.
Thanks,
sparkiiP.S. I can’t figure out how to type backticks so I added spaces
Forum: Fixing WordPress
In reply to: Managing User RolesHi Brandon,
I saw your post and wonder what solution you ended up going with.
I’m playing around with Thomas Schneider’s Role Manager and created a special role which has very limited rights (primarily the right to upload files and edit their own pages).
I’m thinking next I’ll need to create either private pages for each client or password protected pages for each, but very curious to know what you did.
Thanks for any input.
Corrine