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

Welcart Bordeaux 1.1.8 をリリース

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

  1. 商品レビューリストの表示不具合修正
  2. 「Welcart営業日カレンダー」ウィジェットのレイアウト崩れ修正

商品レビューリストの表示不具合修正

コード修正: welcart_basic-bordeaux/inc/front-cutomized.php 228行目あたり

function wc_review( $comment, $args, $depth ) {
    $GLOBALS['comment'] = $comment;
    switch ( $comment->comment_type ) :
        case 'comment' :

「Welcart営業日カレンダー」ウィジェットのレイアウト崩れ修正

スタイル修正・追加: welcart_basic-bordeaux/style.css 389行目あたり

-.widget_welcart_calendar table {
+.widget_welcart_calendar li {
    display: flex;
    flex-wrap: wrap;;
}
.widget_welcart_calendar li > div {
    float: left;
    width: 48%;
    margin: 0;
}
-.widget_welcart_calendar table:first-child {
+.widget_welcart_calendar li > div:first-child {
    margin-right: 4%;
 }
.widget_welcart_calendar table {
    margin: 0 0 2%;
    float: none;
    width: 100%;
}

「-」で記されているセレクタは「+」のセレクタに修正。

スタイル追加: welcart_basic-bordeaux/style.css 2003行目あたり

.widget_welcart_calendar li {
    display: block;
}
.widget_welcart_calendar li > div {
    float: none;
    width: auto;
}
.widget_welcart_calendar li > div:first-child {
    margin-right: 0;
}