PenciDesign replied
Hi,
If you want to do that, please open plugins/penci-framework/shortcodes/block_6/content-items.php file and on line 13, replace this code:
\
if( empty( $atts['hide_thumb'] ) ) {\
$block6_items .= Penci_Helper_Shortcode::get_image_holder( array(\
'image_size' => 'penci-thumb-280-186',\
'class' => 'penci_mobj__img',\
'show_icon' => ! $atts[ 'hide_icon_post_format' ],\
'class_icon' => 'small-size-icon',\
'image_type' => $atts['image_type']\
) );\
}To:
\
if( empty( $atts['hide_thumb'] ) && has_post_thumbnail() ) {\
$block6_items .= Penci_Helper_Shortcode::get_image_holder( array(\
'image_size' => 'penci-thumb-280-186',\
'class' => 'penci_mobj__img',\
'show_icon' => ! $atts[ 'hide_icon_post_format' ],\
'class_icon' => 'small-size-icon',\
'image_type' => $atts['image_type']\
) );\
}\
Hope this help,
Best Regards,
PenciDesign