Welcart Simple Plus 1.3.5 をリリースしました。修正点は以下のとおりです。
- マイページ周りのテーブルの色がカスタマイザーの色と連動していない不具合を修正
- 商品詳細ページで商品画像が正方形にトリミングされてしまう不具合を修正
- welcart_simpleplus_usces_get_item_image() 関数の修正
- 商品一覧の通常価格の文字色の修正
- 「整形済みテキスト」ブロックのスタイル修正
- 会員にログインしていない場合に「通知設定」の記事タイトルがページタイトルになってしまう不具合を修正
- 商品詳細本文内のリンクのスタイル修正
- welcart_simpleplus_usces_get_item_image() 関数内のフィルターフック名の変更
- ヘッダの表示方法が「上からスクロール」の場合、出現時の挙動の不具合を修正
- PayPalのクレジットカード更新ページのボタンのスタイル修正
- WCEX Favorites を有効化してる時に ウインドウサイズ 880〜992px の間で、税別の税込表示が白くなる不具合を修正
- 配送・支払方法ページの支払方法に画像を挿入するとスマホではみ出してしまう不具合を修正
- 商品画像の「説明」欄に登録した内容が 1行に収まりきらない場合にレイアウト崩れを起こす不具合を修正
- フッターメニューのリンクが効かない不具合を修正
- スマホ表示の時に会員情報の「名前」と「メールアドレス」の間に隙間ができる不具合を修正
- 投稿記事一覧で記事が無い場合に表示される文言のスタイル修正
- スマホでトップページのスマホ用画像ロゴが左揃えになる不具合を修正
welcart_simpleplus_usces_get_item_image() 関数内のフィルターフック名の変更
今回のバージョンで、welcart_simpleplus_usces_get_item_image() 関数内の「usces_filter_main_img / usces_filter_sub_img」のフック名変更をおこなっております。
既に変更前のフック名でカスタマイズされている方に関しては、下記、変更後のフック名に変更していただく必要がございます。
$html = welcart_simpleplus_replace_img_tags( $html, $code, $post_id, $pictid, $size ); $html = apply_filters( 'usces_filter_main_img', $html, $post_id, $pictid, $size );フック名の変更 : /inc/template-functions.php 1015行目
$html = welcart_simpleplus_replace_img_tags( $html, $code, $post_id, $pictid, $size, $name ); $html = apply_filters( 'welcart_simpleplus_filter_main_img', $html, $post_id, $pictid, $size );フック名の変更 : /inc/template-functions.php 1032行目
$html = welcart_simpleplus_replace_img_tags( $html, $code, $post_id, $pictid, $size, $name ); $html = apply_filters( 'usces_filter_sub_img', $html, $post_id, $pictid, $size );
$html = welcart_simpleplus_replace_img_tags( $html, $code, $post_id, $pictid, $size, $name ); $html = apply_filters( 'welcart_simpleplus_filter_sub_img', $html, $post_id, $pictid, $size );