• Hi.

    I am pretty new to wordpress, probably close to two months now so I’m not sure if all of these questions can be addressed from this plugin as it might be an issue with something else but you never know until you ask.

    I’m using Pixel as my theme currently and I got this plugin to work but it’s currently not doing a few things I’d like it to do.

    1 – The thumbnails are currently not links to the full story page. Is there an easy way to make them links to the corresponding blog post?

    2 – I adjusted the code so that the thumbnail shows up on the main index page but decided to drop it from the actual story page since I can choose to set up a full gallery there. The only issue I am having is when I click on the category list to see all of my blog posts for a certain category the thumbnails are not showing up on that page. Is there a way I can get it to show up on the category page, the main index but not in the story?

    3 – How can I keep the thumbnail image out of the gallery? I tried assigning 0 to the thumbnail hoping it would omit it that way but that didn’t work. I can assign it to the last spot in the gallery which puts it out of the way somewhat but it’s still there.

    http://wordpress.org/extend/plugins/wp-choose-thumb/

Viewing 1 replies (of 1 total)
  • 1 – The thumbnails are currently not links to the full story page. Is there an easy way to make them links to the corresponding blog post?

    <a href="<?php the_permalink(); ?>">
    <?php
    if(function_exists('wct_display_thumb')) wct_display_thumb();
    ?>
    </a>

    2 – I adjusted the code so that the thumbnail shows up on the main index page but decided to drop it from the actual story page since I can choose to set up a full gallery there. The only issue I am having is when I click on the category list to see all of my blog posts for a certain category the thumbnails are not showing up on that page. Is there a way I can get it to show up on the category page, the main index but not in the story?

    You’ll have to edit the “single.php” file in your theme directory and remove the thumb display code.

    3 – How can I keep the thumbnail image out of the gallery? I tried assigning 0 to the thumbnail hoping it would omit it that way but that didn’t work. I can assign it to the last spot in the gallery which puts it out of the way somewhat but it’s still there.

    You simply can’t. The plugin is created this way to show all the thumbs attached to a post. To keep things simple.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP-Choose-Thumb] 3 questions’ is closed to new replies.