Hi
I also was surfing web about customize jetpack portfolio and after reading this topic, understood that by editing “portfolio.php” file in “\modules\custom-post-types” folder portfolio shotcode is customizable.
I found following code:
static function portfolio_shortcode( $atts ) {
// Default attributes
$atts = shortcode_atts( array(
'display_types' => true,
'display_tags' => true,
'display_content' => true,
'show_filter' => false,
'include_type' => false,
'include_tag' => false,
'columns' => 2,
'showposts' => -1,
'order' => 'asc',
'orderby' => 'date',
), $atts, 'portfolio' );
and changed “true” options to “false” and now use shortcode for displaying only thumbnail images. that’s so easy ??
@jeremy may you add this option in setting page in the next release?
thanks