Viewing 6 replies - 1 through 6 (of 6 total)
  • Ray R

    (@ray-r)

    Not sure if this helps, but I had a problem with the Title Link not going anywhere.

    Pasted it into the link on the item page and it works.

    Not sure if this is what you are supposed to do though.

    Ignore this I have read the forum and found out how to use the permalink – Page 2 I think it was

    Thread Starter larckco

    (@larckco)

    Thanks Ray for the comment, I have the clickable link working fine but when you click on the link it takes you to a blank page. Seems like it should display the information from the items where the permalink originated should be included on the target page.

    Since there doesn’t seem to be any support available for the catablog I am thinking the customer is all for pulling it off the site. I have a lot of time in it setting up pages and categories and it works well but the confounded permalink target page issue is making it less and less attractive for what they are trying to do with it.

    Thanks again for the comment.

    Plugin Author macguru2000

    (@macguru2000)

    You blank page is most likely due to your current theme, please try switching to the TwentyTen theme and seeing if the page is then rendered properly. If it is your theme I would suggest evaluating how the theme’s single.php file renders page content.

    I’m having the same problem. My theme’s single.php renders single blog posts just fine, but single catablog posts are blank. I read in this post that you can override the catablog single post template by creating a template file called single-catablog-item.php, but that doesn’t actually do anything.

    Plugin Author macguru2000

    (@macguru2000)

    Are you sure the Public feature is enabled and you are using pretty permalinks? Have you tried going to the Settings > Permalinks page in admin, just viewing the page resets your site’s permalink cache.

    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 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: CataBlog] PERMALINKS Pages Are Blank’ is closed to new replies.