こんにちは。
‘usces_filter_item_list_loopimg’ というフィルターフックが有ります。これを使って以下の様に修正することができます。
add_filter( 'usces_filter_item_list_loopimg', 'my_filter_item_list_loopimg', 10, 2 );
function my_filter_item_list_loopimg( $html, $content ){
global $post;
$html = '<div class="loopimg">
<a href="' . get_permalink($post->ID) . '">' . usces_the_itemImage(0, 300, 300, $post, 'return') . '</a>
</div>
<div class="loopexp">
<div class="field">' . $content . '</div>
</div>
';
return $html;
}
この修正は、Welcart Basic にも施しますので、次のバージョンで更新していただければ修正されます。