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

Welcart Carina 1.4.1 をリリース

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

投稿記事一覧の同じ日付の場合、一つ目の記事以外の日付が表示されない不具合を修正

テンプレート修正 : archive.php 74行目
テンプレート修正 : category.php 115行目
<?php the_date(); ?>
<?php the_time( get_option( 'date_format' ) ); ?>

Multiple Shipping 導入時の CSSファイル欠損エラーを修正

テンプレート修正 : functions.php 129行目あたり
if ( defined( 'WCEX_MSA_VERSION' ) ) {


    wp_enqueue_style( 'parent-msa', $template_dir . '/wcex_multi_shipping.css', array( 'msa_style' ), WCEX_MSA_VERSION, false );

}
if ( defined( 'WCEX_MSA_VERSION' ) ) {
    $action = isset( $_REQUEST['msa_action'] ) ? wp_unslash( $_REQUEST['msa_action'] ) : '';
    if ( welcart_basic_is_member_page() || ( 'delivery' === $usces->page && empty( $action ) ) || 'confirm' === $usces->page ) {
        wp_enqueue_style( 'parent-msa', $template_dir . '/wcex_multi_shipping.css', array( 'msa_style' ), WCEX_MSA_VERSION, false );
    }
}