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

Welcart Square 1.5.2 をリリース

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

PHP8.2対応

テンプレート修正 : inc/theme-customizer.php 907行目~994行目あたり

/**
 * Display theme option
 */
function wcct_get_options( $key = '' ) {
    if ( empty( $key ) ) {
        return;
    }

    $options = get_option( 'basic_type_options' );

    if ( ! is_admin() ) {
        if ( ! isset( $options['logo'] ) ) {
            $options['logo'] = '';
        }
        if ( ! isset( $options['facebook_id'] ) ) {
            $options['facebook_id'] = '';
        }
        if ( ! isset( $options['facebook_button'] ) ) {
            $options['facebook_button'] = false;
        }
        if ( ! isset( $options['twitter_id'] ) ) {
            $options['twitter_id'] = '';
        }
        if ( ! isset( $options['twitter_button'] ) ) {
            $options['twitter_button'] = false;
        }
        if ( ! isset( $options['instagram_id'] ) ) {
            $options['instagram_id'] = '';
        }
        if ( ! isset( $options['instagram_button'] ) ) {
            $options['instagram_button'] = false;
        }
        if ( ! isset( $options['display_sort'] ) ) {
            $options['display_sort'] = '';
        }
        if ( ! isset( $options['display_description'] ) ) {
            $options['display_description'] = true;
        }
        if ( ! isset( $options['display_soldout'] ) ) {
            $options['display_soldout'] = true;
        }
        if ( ! isset( $options['display_inquiry'] ) ) {
            $options['display_inquiry'] = true;
        }
        if ( ! isset( $options['display_inquiry_text'] ) ) {
            $options['display_inquiry_text'] = __( 'Contacting this item', 'welcart_basic_square' );
        }
        if ( ! isset( $options['display_produt_tag'] ) ) {
            $options['display_produt_tag'] = true;
        }
        if ( ! isset( $options['cart_button'] ) ) {
            $options['cart_button'] = __( 'Add to Shopping Cart', 'usces' );
        }
        if ( ! isset( $options['inquiry_link'] ) ) {
            $options['inquiry_link'] = 0;
        }
        if ( ! isset( $options['inquiry_link_button'] ) ) {
            $options['inquiry_link_button'] = false;
        }
        if ( ! isset( $options['review'] ) ) {
            $options['review'] = false;
        }
        if ( ! isset( $options['continue_shopping_button'] ) ) {
            $options['continue_shopping_button'] = false;
        }
        if ( ! isset( $options['continue_shopping_url'] ) ) {
            $options['continue_shopping_url'] = '';
        }
        if ( ! isset( $options['display_info'] ) ) {
            $options['display_info'] = true;
        }
        if ( ! isset( $options['info_cat'] ) ) {
            $options['info_cat'] = wcct_get_info_default();
        }
        if ( ! isset( $options['info_num'] ) ) {
            $options['info_num'] = 10;
        }
        if ( ! isset( $options['cat_image'] ) ) {
            $options['cat_image'] = true;
        }
    }

    if ( empty( $options[ $key ] ) ) {
        return;
    }

    return $options[ $key ];
}
/**
 * Display theme option
 */
function wcct_get_options( $key = '' ) {

    $option_value = null;
    if ( empty( $key ) ) {
        return $option_value;
    }

    $options = get_option( 'basic_type_options' );

    if ( ! is_admin() ) {
        if ( isset( $options[ $key ] ) ) {
            $option_value = $options[ $key ];
        } else {
            switch ( $key ) {
                case 'logo':
                    $option_value = '';
                    break;
                case 'facebook_id':
                    $option_value = '';
                    break;
                case 'facebook_button':
                    $option_value = false;
                    break;
                case 'twitter_id':
                    $option_value = '';
                    break;
                case 'twitter_button':
                    $option_value = false;
                    break;
                case 'instagram_id':
                    $option_value = '';
                    break;
                case 'instagram_button':
                    $option_value = false;
                    break;

                case 'display_sort':
                    $option_value = '';
                    break;
                case 'display_description':
                    $option_value = true;
                    break;
                case 'display_soldout':
                    $option_value = true;
                    break;
                case 'display_inquiry':
                    $option_value = true;
                    break;
                case 'display_inquiry_text':
                    $option_value = __( 'Contacting this item', 'welcart_basic_square' );
                    break;
                case 'display_produt_tag':
                    $option_value = true;
                    break;

                case 'cart_button':
                    $option_value = __( 'Add to Shopping Cart', 'usces' );
                    break;
                case 'inquiry_link':
                    $option_value = 0;
                    break;
                case 'inquiry_link_button':
                    $option_value = false;
                    break;
                case 'review':
                    $option_value = false;
                    break;

                case 'continue_shopping_button':
                    $option_value = false;
                    break;
                case 'continue_shopping_url':
                    $option_value = '';
                    break;

                case 'display_info':
                    $option_value = true;
                    break;
                case 'info_cat':
                    $option_value = wcct_get_info_default();
                    break;
                case 'info_num':
                    $option_value = 10;
                    break;
                case 'cat_image':
                    $option_value = true;
                    break;
            }
        }
    }

    return $option_value;
}

get_terms() の引数指定方法を変更

テンプレート修正 : inc/theme-customizer.php 1003行目~1007行目あたり

$target_arg   = array(

    'hide_empty'   => false,
    'exclude_tree' => usces_get_cat_id( 'item' ),
);
$target_terms = get_terms( 'category', $target_arg );
$target_arg   = array(
    'taxonomy'     => 'category',
    'hide_empty'   => false,
    'exclude_tree' => usces_get_cat_id( 'item' ),
);
$target_terms = get_terms( $target_arg );

カテゴリー画像選択時、ログインユーザー以外がアップロードした画像を選択できない不具合を修正

テンプレート修正 : inc/term-customized.php 99行目~110行目あたり

file_frame = wp.media.frames.file_frame = wp.media({
    title: '<?php esc_html_e( 'Category image', 'welcart_basic_nova' ); ?>',
    library: {
        type: 'image',
        author: userSettings.uid
    },
    button: {
        text: '<?php esc_html_e( 'Set the category image', 'welcart_basic_nova' ); ?>',
        close: true
    },
    multiple: false
});
file_frame = wp.media.frames.file_frame = wp.media({
    title: '<?php esc_html_e( 'Category image', 'welcart_basic_nova' ); ?>',
    library: {
        type: 'image',

    },
    button: {
        text: '<?php esc_html_e( 'Set the category image', 'welcart_basic_nova' ); ?>',
        close: true
    },
    multiple: false
});

ロゴ画像を削除した際、サイトタイトルが表示されない不具合を修正

関数追加 : inc/template-functions.php

/**
 * Save blank values
 *
 * @param string $input Text.
 * @return string
 */
function welcart_basic_callback_esc_url_raw( $input ) {
    return ( '' === $input ) ? '' : esc_url_raw( $input );
}

テンプレート修正 : inc/theme-customizer.php 24行目あたり

$wp_customize->add_setting(
    'basic_type_options[logo]',
    array(
        'default'           => '',
        'type'              => 'option',
        'capability'        => 'edit_theme_options',
        'sanitize_callback' => 'esc_url_raw',
    )
);
$wp_customize->add_setting(
    'basic_type_options[logo]',
    array(
        'default'           => '',
        'type'              => 'option',
        'capability'        => 'edit_theme_options',
        'sanitize_callback' => 'welcart_basic_callback_esc_url_raw',
    )
);

商品詳細ページの消費税表示のフォントサイズを調整

CSS追加 : usces_cart.css

.item-info .field_price em {
    font-size: .6em;
}
.item-info .tax_inc_block em {
    font-size: .8em;
}

パスワード入力欄の幅を調整

横幅100px固定の指定を削除

テンプレート修正 : wc_templates/cart/wc_customer_page.php 99行目あたり

<input name="customer[password1]" style="width:100px" type="password" value="<?php echo esc_attr( $usces_entries['customer']['password1'] ); ?>" autocomplete="new-password" />
<input name="customer[password1]" type="password" value="<?php echo esc_attr( $usces_entries['customer']['password1'] ); ?>" autocomplete="new-password" />

テンプレート修正 : wc_templates/cart/wc_customer_page.php 116行目あたり

<input name="customer[password2]" style="width:100px" type="password" value="<?php echo esc_attr( $usces_entries['customer']['password2'] ); ?>" autocomplete="new-password" />
<input name="customer[password2]" type="password" value="<?php echo esc_attr( $usces_entries['customer']['password2'] ); ?>" autocomplete="new-password" />

【WelcartPay】配送・支払方法ページのクレジットカードダイアログでテーブルとボタンの間隔を調整

CSS追加 : usces_cart.css

#escott-token-form .settlement_form {
    margin-bottom: 10px;
}

商品レビューに不適切な文字が表示される不具合を修正

テンプレート修正 : wc_templates/wc_review.php 94行目あたり

?>]
?>

・会員情報編集ページのレイアウトを調整

CSS追加 : usces_cart.css

/* -- .whitebox -- */
.member-page .whitebox:has(#memberedit) {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    overflow: hidden;
}

class追加 : usces_cart.css 1091行目~1096行目あたり

.member_submenu a,
 
.gotoedit a {
    width: auto;
    padding: 0 20px;
    line-height: 40px;
}
.member_submenu a,
.member-page #memberinfo .gotoedit a,
.gotoedit a {
    width: auto;
    padding: 0 20px;
    line-height: 40px;
}