ソニーペイメントサービスの2つの決済モジュール

Welcart Voll 1.4.1 をリリース

Welcart Voll 1.4.1 をリリースしました。修正点は以下のとおりです。

商品詳細ページのサムネイル画像が全てメイン画像になる不具合を修正

テンプレート修正 : wc_templates/wc_item_single_data.php 58行目あたり
【変更前】
<?php foreach ( $image_ids as $image_id ) : ?>
    <div>
        <a href="<?php usces_the_itemImageURL( $id ); ?>" <?php echo apply_filters( 'usces_itemimg_anchor_rel', null ); ?>>
            <?php usces_the_itemImage( $image_id, 600, 600, $post ); ?>
        </a>
    </div>
<?php endforeach; ?>
【変更後】
<?php foreach ( $image_ids as $image_id ) : ?>
    <div>
        <a href="<?php usces_the_itemImageURL( $image_id ); ?>" <?php echo apply_filters( 'usces_itemimg_anchor_rel', null ); ?>>
            <?php usces_the_itemImage( $image_id, 600, 600, $post ); ?>
        </a>
    </div>
<?php endforeach; ?>
テンプレート修正 : wc_templates/wc_sku_select.php 45行目あたり
【変更前】
<?php foreach ( $image_ids as $image_id ) : ?>
    <div><?php usces_the_itemImage( $id, 90, 90, $post ); ?></div>
<?php endforeach; ?>
【変更後】
<?php foreach ( $image_ids as $image_id ) : ?>
    <div><?php usces_the_itemImage( $image_id, 90, 90, $post ); ?></div>
<?php endforeach; ?>