This filter is in framework > admin > meta > meta.php.
for themeblvd_post_meta about line 430.
for themeblvd_page_meta about line 97.
Notice the condition refers just to the portfolio_item post type:
0 1 2 3 4 5 6 7 8 9 10 |
function jma_post_filter($setup) { $setup['options']['tb_thumb_link']['std'] = 'post';//link from say the grid to the post or use 'thumbnail' to show enlarged lightbox version (the default value is 'inactive') $setup['options']['tb_thumb_link_single']['std'] = 'thumbnail';//link the single page featured image to enlarged lightbox or 'yes' or 'no' to apply grid value to single post if($_GET['post_type'] == 'portfolio_item' || get_post_type($_GET['post']) == 'portfolio_item')//just for the portfolio post type $setup['options']['tb_thumb']['std'] = 'hide';//hide the featured image on the single post other options are 'full' and 'default' (the default value is set in theme options) return $setup; //to change the image size on a single post change the content.php (copy to child theme) themeblvd_the_post_thumbnail('your_image_size'); } add_filter('themeblvd_post_meta', 'jma_post_filter'); |