hi to all, i have the same issue with <div class=”crp_title”>, and so i check the plugin code and found the filter: crp_list_link
My solution for widget output whitout thumbnail is:
if( function_exists('get_crp') ) {
add_filter('crp_list_link', 'fc_crp_list_link', 10, 3);
function fc_crp_list_link( $output, $result, $arg ){
//var_dump($output);
$output = str_replace('<a href', '<h5><a href', $output);
$output = str_replace('</a>', '</a></h5>', $output );
$output = str_replace('<div class="crp_title">', '', $output);
$output = str_replace('</div>', '', $output );
return $output;
}}
is not so clean, but working well, don’t touch css only add filter in functions.php.
my2cents