theswimmer
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Parent Menu ItemsOH man, that totally did it. Thank you so much! Parent links are successfully ignored at all levels!
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Parent Menu ItemsHi Peter,
I’d like to echo all the positive comments. This is working really well for me. I appreciate your efforts!
I’m very interested in the consistent behavior of “ignore parent links” as pbravin mentioned. Is there a 2.2 beta that you’re willing to let those of us who want this functionality adjustment try out?
Thanks!
Thank you, mazspazz! That fixed my problem.
Forum: Fixing WordPress
In reply to: wp_list_pages loses its place when I add posts to a pageWah! That did it! Thank you, alchymyth!
Forum: Fixing WordPress
In reply to: wp_list_pages loses its place when I add posts to a pageI’m calling with this:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="event"> <?php $photos = aldenta_get_images('full'); if ($photos) { foreach ($photos as $photo) { echo "$photo"; } } ?> <h2><?php the_title(); ?></h2> <p><?php the_content(); ?></p> </div> <?php endwhile; else: ?> <!-- The very first "if" tested to see if there were any Posts to --> <!-- display. This "else" part tells what do if there weren't any. --> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?>
I just tried adding the reset query just before the loop end, like this:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="event"> <?php $photos = aldenta_get_images('full'); if ($photos) { foreach ($photos as $photo) { echo "$photo"; } } ?> <h2><?php the_title(); ?></h2> <p><?php the_content(); ?></p> </div> <?php endwhile; else: ?> <!-- The very first "if" tested to see if there were any Posts to --> <!-- display. This "else" part tells what do if there weren't any. --> <p>Sorry, no posts matched your criteria.</p> <?php wp_reset_query(); ?> <?php endif; ?>
and no luck. Any other direction?
Forum: Fixing WordPress
In reply to: Page and Post Category with same name – possible?Anyone?
Forum: Plugins
In reply to: Podpress Audio Player border colorThank you! That’s exactly what it was – .entry object. I changed the border to “0.” Thanks so much!
Viewing 7 replies - 1 through 7 (of 7 total)