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

Welcart Square 1.5.5 をリリース

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

【Multiple Shipping】ギフト用配送先ページのボタン文言を「新しい配送先を登録する」に変更

テンプレート修正 : wc_templates/member/wc_member_msa_page.php 58行目あたり

<div class="msa_total">登録件数<span id="msa_num"></span>件<input id="new_destination" type="button" value="新しい配送先を追加する" /></div>
<div class="msa_total">登録件数<span id="msa_num"></span>件<input id="new_destination" type="button" value="新しい配送先を登録する" /></div>

【Kuroneko Daikin Atobarai Service】スマホタイプ利用時の認証画面レイアウト崩れを修正

スタイル修正 : usces_cart.css 618行目あたり

.cart-page .column {

    width: 100%;
    margin: 0;
.cart-page .column,
.cart-page:has(#kuroneko_atobarai_sms) #info-confirm {
    width: 100%;
    margin: 0;

スタイル修正 : usces_cart.css 1394行目あたり

/**
 * 16.1 Mobile Large 620px
 */
@media screen and (min-width: 38.75em) {
    ~ 省略 ~
    .cart-page .column,
    .member-page .column {
        padding: 20px;
    }
    ~ 省略 ~
}
/**
 * 16.1 Mobile Large 620px
 */
@media screen and (min-width: 38.75em) {
    ~ 省略 ~
    .cart-page .column,
    .member-page .column,
    .cart-page:has(#kuroneko_atobarai_sms) #info-confirm {

        padding: 20px;
    }
    ~ 省略 ~
}

スタイル追加 : usces_cart.css

/* kuroneko_atobarai_sms
-------------------------------------------------------------- */
.cart-page:has(#kuroneko_atobarai_sms) .kuroneko_sms_fields input {
    height: 48px;
}

/**
 * 16.1 Mobile Large 620px
 */
@media screen and (min-width: 38.75em) {
    /* kuroneko_atobarai_sms
    -------------------------------------------------------------- */
    .cart-page:has(#kuroneko_atobarai_sms) #info-confirm .confiem_notice,
    .cart-page:has(#kuroneko_atobarai_sms) #info-confirm .error_message {
        text-align: center;
    }
}

認証メール送信完了画面のレイアウト崩れを修正

テンプレート修正 : page.php 44行目あたり

<?php get_sidebar( 'other' ); ?>
<?php
if ( ! wel_is_cart_page() && ! wel_is_member_page() ) :
    get_sidebar( 'other' );
endif;
?>