Look at the following codes
<?php
if($portfolio_type=="Image"){
if($portfolio_slider==''){
if ( $images = get_children(array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'numberposts' => 50,
'order' => 'ASC',
'orderby' => 'menu_order',
'exclude' => get_post_thumbnail_id(),
'post_mime_type' => 'image',)))
{
?>
I just comment out or delete ‘exclude’ => get_post_thumbnail_id(), as
<?php
if($portfolio_type=="Image"){
if($portfolio_slider==''){
if ( $images = get_children(array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'numberposts' => 50,
'order' => 'ASC',
'orderby' => 'menu_order',
//'exclude' => get_post_thumbnail_id(),
'post_mime_type' => 'image',)))
{
?>