Taking out the exact lines of code specified above in that specific file does exactly what you're wanting to do. If you copied the default template and are editing your copy then you need to be sure your new template is selected in CB Gallery. The below is what you should have.
IN: components/com_comprofiler/plugin/user/plug_cbgallery/templates/default/photos.php
ON: Lines 181 - 201
FROM:
Code:
$return .= '<div class="galleryContainerInner" style="height: ' . $width . 'px; width: ' . $width . 'px;">'
. '<div class="galleryContainerTop" style="height: ' . ( $width - 40 ) . 'px;">'
. $logo
. '</div>'
. '<div class="galleryContainerBottom" style="height: 40px;">'
. '<div class="galleryContainerContent">'
. '<div class="galleryContainerContentRow text-nowrap text-overflow small">'
. '<strong>'
. $item
. '</strong>'
. '</div>'
. '<div class="galleryContainerContentRow text-nowrap text-overflow small">'
. '<span title="' . htmlspecialchars( $row->get( 'date' ) ) . '">'
. cbFormatDate( $row->get( 'date' ), true, (int) $params->get( 'tab_photos_items_time_display', 0 ), $params->get( 'tab_photos_items_date_format', 'M j, Y' ), $params->get( 'tab_photos_items_time_format', ' g:h A' ) )
. '</span>'
. ( $row->get( 'description' ) ? '<div class="galleryContainerDescription">' . cbTooltip( 1, $row->get( 'description' ), $title, 400, null, '<span class="fa fa-info-circle text-muted"></span>' ) . '</div>' : null )
. '</div>'
. '</div>'
. '</div>'
. '</div>'
. '</div>';
TO:
Code:
$return .= '<div class="galleryContainerInner" style="height: ' . $width . 'px; width: ' . $width . 'px;">'
. '<div class="galleryContainerTop" style="height: ' . $width . 'px;">'
. $logo
. '</div>'
. '</div>'
. '</div>';