pusbucket
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Rotating Posts] different sets of posts would be nicethis plugin is SOOOO close to meeting all my needs, however, i need to put 2 instances within my THEME (can’t use shortcodes in editor). so i put these into my themes:
<?php echo do_shortcode('[rotating-posts category_name="cat1"]'); ?>
<?php echo do_shortcode('[rotating-posts category_name="cat2"]'); ?>
and it looks great however when i click something using cat2 rotator, it controls the cat1 rotator.any way around this?
but can datafeedr use shortcodes? it would GREAT if this could be done because i’m using other plugins’ shortcodes in certain pages.
Forum: Plugins
In reply to: [WP-Cumulus] wp-cumulus tags not workingahhhhh ok, for some reason ‘Remove Title Attributes’ was activated on that site. is all good now, THANKS FOR YOUR HELP AND YOUR SWEET PLUGIN!
Forum: Plugins
In reply to: [WP-Cumulus] wp-cumulus tags not workingyes. only one post, but it’s tagged with ‘Dav’e ‘Democracy’ and ‘HAL 9000’ (those show up in the default WP tags widget but not WP-cumulus)
Forum: Plugins
In reply to: [Plugin: Remove Title Attributes] Works perfect!Does it still work for you? Mine quit working after the 2.9.1 upgrade.
Forum: Plugins
In reply to: [Plugin: Flash Video Player] Any way of adding the player to post ?I would like to second this request. Embedding is fine for me, but my users will NEVER be able to remember what to do to post a video. A button in the WYSIWYG toolbar would be most excellent.
Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?WOOPS!
thanks LenK!!!Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?This is great but I’m having trouble adding a 3rd call:
<?php if ( is_page('50') ) { ?> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/pg-50.css" type="text/css" media="screen" /> <?php elseif ( is_page('51') ) { ?> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/pg-51.css" type="text/css" media="screen" /> <?php } else { ?> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <?php } ?>
this kills everything and I’m given a blank page (no error report)
What’d I do?Forum: Plugins
In reply to: [Plugin: Shashin] Upgrade troubleWoops, nevermind. I was looking under WP ‘Settings > Shashin’ and didn’t realize there’s a ‘Manage > Shashin’ as well. Sync button made it all better.
Thanks!Forum: Plugins
In reply to: [Plugin: Shashin] Upgrade troubleI’ve upgraded WP to 2.6.2 and Shashin 2.2.1.
Did the deactivate/reactivate but when I’m getting a “Invalid URL for Picasa Server” error. This is the correct URL and the album is public.Forum: Fixing WordPress
In reply to: Protecting all the posts and pages for a site.I’d like this too.
Any advice?Forum: Plugins
In reply to: [Plugin: PhotoXhibit] Looks great but no photobucket supportAny developments on this? I’d like to continue with Photobucket too.
Forum: Themes and Templates
In reply to: Another ‘dropping / falling sidebar’ problemWOOT! Got it.
Was lacking a</div>
tag after the registration call so I put it here:<p id="respond"><b>Leave a Reply</b></p> <?php if ( get_option('comment_registration') && !$user_ID ) : ?> <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p> </div> <?php else : ?> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
Forum: Themes and Templates
In reply to: Another ‘dropping / falling sidebar’ problemBTW, here’s a screenshot comparison:
ClueForum: Plugins
In reply to: [Featured Post] Plugin : Calling the Plugin.Alright, I was being a little facetious to highlight the point that some of us only know enough to get into trouble ??
Turns out I was having problems when “Display excerpt.” was checked.
So Konziner, if you’re still completely lost, I stuck<?php if ( function_exists('show_featured_post') ) show_featured_post('', '', true, 3320);?>
just before where the posts are called in the template; i.e.
<?php if (have_posts()) : ?>
…btw, ‘3320’ is the ID of the category I want featured posts from.