Reply To: Epik Portfolio

Homepage Community Forums Epik Theme Support Epik Portfolio Reply To: Epik Portfolio

#6447
David Chu
Customer

    I see. And I did notice after the fact that there are separate instructions about the PrettyPhoto setup. I wouldn’t have needed to explore if the default in the template had been to use PrettyPhoto, like the demo. Maybe most people don’t want PrettyPhoto. In any case, it’s good to know that it works, and to familiarize myself with the template code.

    Anyway, having a conditional for the mini-thumbnails is good if you don’t want to force the user to have a Featured Image on every item in the Portfolio. It’s very normal code for this type of context:

    if ( has_post_thumbnail() )   {
        ... other code here ....
    }

    Dave