Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • BernardArias

    (@bernardarias)

    I found the template! It’s kind of a duh… it was in the theme folder. It was using the old method to get the field name. I updated to the API format and it now works! Thank you!

    I only have one lingering issue since the upgrade… it seemed related NGG field. Now it doesn’t seem like it. I thought you might be able to give me direction. This page displays thumbnails of the image in posts from the “featured items” category. Each is supposed to go to the corresponding post but the permalink gets resolved to the last post, not the one you click. The permalink shows a different name but the displayed post is always the same.

    Here is the code in the template:

    <div id="content-top">
                    <h2><?php the_title(); ?></h2>
                    </div>
                <div class="clear"></div>
                <?php if (have_posts()) : ?>
                    <?php while (have_posts()) : the_post();
                        the_content(__('<span class="continue">Continue Reading</span>',woothemes)); ?>
                    <?php endwhile; ?>
                <?php endif; ?>
                <div class="fix" style="height:20px;"></div>
    			<div class="featured-items-gallery">
    				<?php query_posts('showposts=24'); ?>
                    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                        <?php $wp_query->is_home = false; ?>
    
        				<div class="featured-item-tmb">
                        	<?php woo_get_image('image','100','100','','thumbnail gallery'); ?>
                            <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
                        </div>
                    <?php endwhile; endif; ?>
    			</div><!--/featured-items-gallery-->

    Any help would be greatly appreciated. And thank you for your help with nextgen.

    BernardArias

    (@bernardarias)

    shauno, in reference to your post…

    bpiper is right in that altering the default gallery.php won’t do anything if you aren’t using that template to display your images. Crazy concept, I know.

    Ho would I go about finding the page being used to edit?

    I’ve upgraded WP and NexGEN to recent versions for a client and the custom field link no longer gets added to the link tag. I’ve added to gallery.php per instruction as well as gallery-caption.php to see if that is the page being used to display… to no avail. Check it out: http://kw.sairabydesign.com/kitchen-bathroom-designers. Each of these is supposed to open a pdf link, but they open the current page again.

    Looking at the source you’ll see the href is missing. Ho would I go about finding the correct page to edit?

Viewing 2 replies - 1 through 2 (of 2 total)