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

Welcart Bordeaux 1.1.5 をリリース

Welcart Bordeaux 1.1.5 をリリースしました。

今回の更新内容は次の通りです。

  1. 商品タグの修正
  2. WordPress の翻訳変更に伴うテンプレートファイルの修正
  3. テーマカスタマイザーの不具合修正

商品タグの修正

コード修正・追加: welcart_basic-bordeuax/inc/front-customized.php 271行目

function wcct_get_produt_tag( $post_id = null ) {
    global $post;
    
    ・
    ・
    
    if ( NULL == $post_id )
        $post_id = $post->ID;
    
    $cats = get_the_category( $post_id );

    ・
    ・
    ・
}
function wcct_produt_tag( $post_id = null ) {
    echo wcct_get_produt_tag( $post_id );
}

WordPress の翻訳変更に伴うテンプレートファイルの修正

翻訳修正: 「wc_templates」テンプレートファイル

<p><?php _e( 'Sorry, no posts matched your criteria.', 'usces' ); ?></p>
※「’usces’」を追加

テーマカスタマイザーの不具合修正

コード追加: welcart_basic-bordeaux/inc/theme-customizer.php 402行目

        if( !isset( $options['continue_shopping_url'] ) ) $options['continue_shopping_url'] = '';
    }

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

    return $options[$key];
}
function wcct_options( $key = '' ) {