bcreighton
Forum Replies Created
-
Forum: Plugins
In reply to: Looking for the right Gallery PluginIt is a great plugin – but no paging ??
Forum: Themes and Templates
In reply to: Restrict Categories on Search Page?Perfect! Thank you! ??
Forum: Fixing WordPress
In reply to: Posts don’t always deleteThis was due to the PDF Download Firefox extension – uninstall or disable it if you are having similar errors.
Forum: Fixing WordPress
In reply to: Posts don’t always deletebump
Forum: Fixing WordPress
In reply to: Can’t edit a page with iframeIs this fixed? The only solution I have found is to turn off the visual editor which not an ok solution. Any ideas?
Thanks!
Forum: Themes and Templates
In reply to: Two colums, Two categories – Order issueHa, that diagram did not turn out as expected.
Forum: Themes and Templates
In reply to: Two colums, Two categories – Order issueNo, that example is if I wanted to do
—– —–
cat 1 ——– cat 2
—– —–
cat 1 ——– cat 2
—– —–
cat 1 ——– cat 2
—– —–without the wrapper div. That would be easy – but alas, my problem is a bit trickier and it needs to be in the same loop.
Forum: Fixing WordPress
In reply to: Page Password ProblemNevermind, it appears as though this is a bug according to:
https://trac.www.ads-software.com/ticket/2055
https://trac.www.ads-software.com/ticket/5222Forum: Fixing WordPress
In reply to: Page Password Problembump.
Forum: Themes and Templates
In reply to: Sidebar Content Issue only for PagesGotcha. At least WP provides a work-around for people pulling in post content on pages…
Thanks.
Forum: Themes and Templates
In reply to: Sidebar Content Issue only for PagesAh, but thank you for linking to the page post. I figured it out, you just need to add:
global $more; $more = 0;
before the loop.
If you’re using the <!– more –> quicktag to place things below the fold in your posts, you’ll want to include the global variable $more and set it to zero (as shown in the code above). Otherwise, the entire post will print out on your blog’s main page.
Forum: Themes and Templates
In reply to: Sidebar Content Issue only for PagesBut isn’t page content, it’s post content that I’m pulling in the sidebar. The sidebar just happens to be included on the page…
Forum: Themes and Templates
In reply to: Sidebar Content Issue only for PagesThe code for the sidebar content looks like this:
<?php query_posts('cat=6&showposts=1 '); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="journal-body" id="post-<?php the_ID(); ?>"> <h4> <?php the_title(); ?> </h4> <?php the_content('Read more »');?> </div> <?php endwhile; ?> <?php else : ?> <p>Not Found</p> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Page Password ProblemIf it helps, it is registering that is password protected. There is a “Protected:” before the title.
Just no password dialog.
Any ideas?
Forum: Plugins
In reply to: Resize youTube on the fly?Looks like Viper’s Video Quicktags is exactly what I need. Under options you can set a default width/height for each video format. Definitely customizable – thanks!