Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi DirtyBirdDesign, this is what Zack quoted in one of his post,

    Yes what you want is possible. There are two ways to do it. Either make an individual WordPress page/post for each photo and set the link value for each catalog item to the corresponding page’s permalink. The other option is to enable the public feature and edit the gallery template. To make the gallery template link to each catalog item’s public page simply replace the %LINK% token with the %PERMALINK% token in the gallery template. You may edit the gallery template in Admin – CataBlog – Templates.

    If you use the public option I would read the documentation on Theme Integration.

    I hope this helps you.

    Kind regards

    APRWebdesign

    (@aprwebdesign)

    hy there,

    i hope someone will read this for a quick solution cause it had keep me busy for days.

    to display a archive page and a singe product page u have to insert the shortcode

    [catablog template=archive] to your page where you want to show your product archive’s

    IMPORTANT:
    go to wp-admin -> catablog -> options -> public-> and Enable Individual Pages and Category Archives:

    and then you create single-catablog-items.php and add it to your template folers ( wp-content/theme/yourtheme)

    inside the single-catablog-items.php page you past the wordpress loop :

    <?php
    get_header();
    if (have_posts()) :
    while (have_posts()) :
    the_post();
    the_content();
    endwhile;
    endif;
    get_sidebar();
    get_footer();
    ?>

    now your catablog page will show the archive and when u click the permalink you will be taken to the product details page.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘create individual product pages’ is closed to new replies.