Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8139975
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:00:33+00:00 2026-06-06T12:00:33+00:00

I am working on a site with WordPress for a client who wants to

  • 0

I am working on a site with WordPress for a client who wants to showcase her products online, but does not want to sell them over the web. I have a simple photo gallery set up with the NextGEN Gallery plugin. Upon clicking the thumbnails in the gallery view, instead of simply showing them in a lightbox or their own page, I would like to add a “details” page for each photo – kind of like the individual product pages on a shopping site, but without any of the shopping functionality. Would it be possible to do this using NextGEN gallery or another plugin, or do I have to do it from scratch (and how would I do that)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T12:00:34+00:00Added an answer on June 6, 2026 at 12:00 pm

    Because NextGen doesn’t actually create a WordPress ‘Page’ to link the single image to, you may be better off using the built-in WordPress Galleries (You may of seen the shortcode). When you upload an image to a page or post, WordPress stores that image as a post in the wp_posts table, alongside all your other posts and pages.. with a post_type of ‘attachment’, and adds it to a ‘Gallery’ for the post or page. You can manage the current gallery for any page or post by clicking the ‘Add Media’ icon above the text editor. While the shortcode is quite limited, you can use code in your theme to display the gallery and images anyway you want.

    If it was me, I would make a ‘Products’ page and individual ‘Product’ pages as child pages of ‘Products’ (or if you want more flexibility, use a custom post type for the products) and then upload all the product photos into the ‘Product’ page galleries (creating a gallery per product) – and setting the primary image as the ‘Featured Image‘ for each product page. Then in your ‘Products’ page template (page-products.php) I would make a loop to display all the individual Product page’s featured images.. something like..

    <?php
        //Add this to your 'Products' page temaplte, page-products.php
        $products = new WP_Query(array(
            'post_parent' => $post->ID,
            'posts_per_page' => -1
        ));
        while ($products->have_posts()) : $products->the_post() ; ?>
            <a href="<?php the_permalink() ?>" title="<?php the_title() ?>">
                <?php the_post_thumbnail() ?>
            </a>
        <?php endwhile;
    ?>
    

    That will create a list of the Product featured images, and you can use CSS to adjust the display – and each featured image will link to the individual product page.

    Then in your individual Product pages (you can use a page template to target all of them), you can display the individual product gallery (like detail shots of the product) using get_children() or use the_post_thumbnail() again to display a larger close-up version of the primary photo. And of course, then you can use the post content of your individual product page to display the info text for each photo, like so:

    <?php
        /* Template Name: Individual Product */
        while (have_posts()) : the_post();
            the_post_thumbnail();
            the_content();
        endwhile;
    ?>
    

    To take it another step further, you could add all sorts of other data about the individual product with custom meta boxes, and display them on the side of the page or something.. like ‘Product Size’, ‘Color’, ‘Foo’, ‘Bar’.. anything really. Hope that helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a massive site for a client, but their current website
Working on a site for a client who has a dev.sitename.com subdomain for development,
On the Wordpress site I'm working on, it lists posts by category, but I
My wordpress site is not loading for some reason. It was working perfectly two
I am working on a WordPress site and I have placed the following code
I am working on a WordPress site where one of the pages lists excerpts
I'm working on a wordpress site, with a blog post that ends like: http://www.blog.com/?p=2
i'm working on a wordpress site using buddypress. So, i'm making a page where
I'm working on a WordPress that will allow the site administrator to switch between
I am working on a migration work to WordPress for a site where all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.