danaherlihey
Forum Replies Created
-
Yeah I suppose that’s my question then – how to do such a hack
Honestly if you could help me out or point me in the right direction I would be so grateful. My php
skills leave much to be desired but..yeah, any help would be amazing as I’m in a pretty big bind.How hard is it to track down and change votes via the database is my follow up question?
Forum: Themes and Templates
In reply to: WordPress messing up image align in postwordpress gave it that alignment.
Forum: Themes and Templates
In reply to: listing posts belonging to category in single postthis is currently what i have
<?php foreach((get_the_category()) as $category) { echo $category->cat_ID . ' '; } ?> <?php query_posts('cat=$category->cat_ID'); while (have_posts()) : the_post(); ?> <a class="title" href="<?php the_permalink() ?>" rel="bookmark" title="Read the feature article: <?php the_title(); ?>"><?php the_title(); ?></a> <?php endwhile; ?>
however, it is listing all post titles and in the single post view it is also aggregating all posts from the blog.
lil help?
Forum: Plugins
In reply to: NextGen-Gallery not adding gallery or albums since WP updateyes, when i disable qtranslate it works fine.
Forum: Plugins
In reply to: NextGen-Gallery not adding gallery or albums since WP updatenothing. i press insert and the pop up window closes – but nothing happens. nothing shows up as an error in firebug either.
Forum: Plugins
In reply to: NextGen-Gallery not adding gallery or albums since WP updatebump
Forum: Plugins
In reply to: [Plugin: qTranslate] WordPress 2.5 compatibilityhas anyone else found a problem using nextGen gallery when using wordpress 2.5 and the new version of qtranslate? I can’t use the add gallery button when writing a post or page. I click insert and nothing happens.
I can still use a tag but I’m creating this website for multiple authors of various skills and levels and would like them to be able to simply use the button to add a gallery or album or picture.
Forum: Plugins
In reply to: NextGen-Gallery not adding gallery or albums since WP updatei reinstalled nextgen-gallery.
i can now add a gallery to a post or page by using the gallery=id tag. However I can not use the ‘add nextgen gallery’ button in the back end editor.
this seems to be a compatibility issue with qtranslate, as it works when qtranslate is not activated.
anyone know a way around this? or am i stuck not using that feature?
Forum: Plugins
In reply to: wp-multilingual php errorI’m also getting this error in the back end when I try to configure the plug in:
Warning: Invalid argument supplied for foreach() in /homepages/24/d184403819/htdocs/dhportfolio/wordpress/wp-content/plugins/wp-multilingual/multilingual.php on line 191
Forum: Fixing WordPress
In reply to: static page that also shows postsscribblerguy, does the rule that each loop should have its own query only apply when i have the loop of posts first and static content second, or is it a general rule to be applied whenever you have multiple loops?
right now I have the standard page template but with a php if statement that is like this:
<?php if (is_page('2') ){ query_posts("category_name=test-category-one"); include (TEMPLATEPATH . '/catdisplay.php'); } ?>
where catdisplay.php just has the standard loop written in. so far it seems to work fine. but maybe this isn’t the best way to go about it.
Forum: Fixing WordPress
In reply to: static page that also shows postshmmm not entirely sure.
i’d still like to use the wordpress backend to edit the static pages (should I want to) and there is also the problem of not wanting to include posts on half the pages.