こんにちは。
Welcart Default テーマのテンプレート構成でお使いの場合、商品一覧ページのレイアウト(画像の大きさも含め)を変更するには、フィルターフックを利用しなくてはいけません。
ここに示しますフィルターは、既存のレイアウトをそのまま表示しています。これを編集することでレイアウトを変更できます。
function my_filter_item_list_loopimg($html, $content){
global $post;
$html = '
<div class="loopimg">
<a href="' . get_permalink($post->ID) . '">' . usces_the_itemImage(0, 100, 100, $post, 'return') . '</a>
</div>
<div class="loopexp">
<div class="field">' . $content . '</div>
</div>';
}
フィルターフックの使い方はこちらをご覧ください。
https://www.welcart.com/community/archives/1697