Correct, within that function you could move around the pieces to change the order. So to have the image/name/company above the message, you would have it look like the following:
function custom_testimonials_single_structure( $shortcode_output, $options) {
// Empty String
$shortcode_output = '';
// Testimonial Content
$shortcode_output .= bne_testimonials_the_content( $options );
// Testimonial Thumbnail
if ($options['image'] != 'false') {
$shortcode_output .= bne_testimonials_featured_image( $options );
}
// Testimonial Title
if ($options['name'] != 'false') {
$shortcode_output .= bne_testimonials_title( $options );
}
// Testimonial Tagline and Website URL
if (!empty($options['tagline']) || !empty($options['website_url'])) {
$shortcode_output .= bne_testimonials_details( $options );
}
return $shortcode_output;
}
add_filter('bne_testimonials_single_structure','custom_testimonials_single_structure', 10 , 2);