Welcart Bordeaux 1.5.1 をリリースしました。修正点は以下のとおりです。
Auto Deliveryを利用時の商品オプション不具合を修正
テンプレート修正 : inc/front-customized.php 60行目テンプレート修正 : inc/front-customized.php 180行目
<td><?php usces_the_itemOption( usces_getItemOptName(), '' ); ?></td>
<td><?php wcad_the_itemOption( usces_getItemOptName(), '' ); ?></td>
Multiple Shipping 導入時の CSSファイル欠損エラーを修正
テンプレート修正 : functions.php 104行目あたり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 ); } }