Warning: strpos() expects parameter 1 to be string, array given in /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php on line 50

Warning: strpos() expects parameter 1 to be string, array given in /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php on line 50

Warning: Cannot modify header information - headers already sent by (output started at /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php:50) in /home/miyucolor/www/risalog/wordpress/wp-content/plugins/all-in-one-seo-pack/app/Common/Meta/Robots.php on line 87

Warning: Cannot modify header information - headers already sent by (output started at /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php:50) in /home/miyucolor/www/risalog/wordpress/wp-includes/feed-rss2.php on line 8
EC-CUBE | risalog https://risalog.org Notes on web design, coding. Thu, 17 Dec 2020 07:06:54 +0000 ja hourly 1 https://wordpress.org/?v=5.7.12 EC-CUBE カート数量変更 セレクトボックス選択時にサブミット https://risalog.org/ec-cube-cart-selectbox/?utm_source=rss&utm_medium=rss&utm_campaign=ec-cube-cart-selectbox https://risalog.org/ec-cube-cart-selectbox/#respond Tue, 01 Sep 2020 05:27:31 +0000 http://risalog.org/?p=223 カートの中身ページにて、数量選択後、変更ボタンを押下でサブミットされるところ、数量(セレクトボックス)をプルダウンして選択で、サブミットされるように変更。 JavaScriptのonChangeイベントを使用し、セレクト […]

The post EC-CUBE カート数量変更 セレクトボックス選択時にサブミット first appeared on risalog.]]>
カートの中身ページにて、数量選択後、変更ボタンを押下でサブミットされるところ、
数量(セレクトボックス)をプルダウンして選択で、サブミットされるように変更。

JavaScriptのonChangeイベントを使用し、セレクトボックスの値を変更したら指定のリンク先に遷移

<td class="alignC">
  <select name="quantity[<!--{$item.cart_no|h}-->]">
    <!--{section name=foo start=1 loop=51}-->
    <option value="<!--{$smarty.section.foo.index}-->" <!--{if $item.quantity == $smarty.section.foo.index}-->selected=selected<!--{/if}-->><!--{$smarty.section.foo.index}--></option>
    <!--{/section}-->
  </select>
  <a href="?" onclick="eccube.fnFormModeSubmit('form<!--{$key|h}-->','setQuantitys','cart_no','<!--{$item.cart_no|h}-->'); return false">変更</a>
</td>

を下に変更。

<td class="alignC">
  <select name="quantity[<!--{$item.cart_no|h}-->]" onchange="eccube.fnFormModeSubmit('form<!--{$key|h}-->','setQuantitys','cart_no','<!--{$item.cart_no|h}-->'); return false">
    <!--{section name=foo start=1 loop=51}-->
    <option value="<!--{$smarty.section.foo.index}-->" <!--{if $item.quantity==$smarty.section.foo.index}-->selected=selected<!--{/if}-->>
    <!--{$smarty.section.foo.index}-->
    </option>
    <!--{/section}-->
  </select>
</td>

Javascript:セレクトボックス選択時にページ遷移する
教えてください。現在のカゴの中ページの数量変更をselectに変更

The post EC-CUBE カート数量変更 セレクトボックス選択時にサブミット first appeared on risalog.]]>
https://risalog.org/ec-cube-cart-selectbox/feed/ 0
EC-CUBE エディター内で使用できるタグを追加する https://risalog.org/ec-cube-allowed-tag/?utm_source=rss&utm_medium=rss&utm_campaign=ec-cube-allowed-tag https://risalog.org/ec-cube-allowed-tag/#respond Fri, 28 Aug 2020 07:32:26 +0000 http://risalog.org/?p=198 エディター内でタグが使えないとき。 システム設定>マスターデータ管理mtb_allowed_tag にタグ追加。(svg、path等を追加。) EC-CUBEの新着情報でHTMLを使えるようにする方法  

The post EC-CUBE エディター内で使用できるタグを追加する first appeared on risalog.]]>
エディター内でタグが使えないとき。

システム設定>マスターデータ管理
mtb_allowed_tag にタグ追加。(svg、path等を追加。)

EC-CUBEの新着情報でHTMLを使えるようにする方法

 

The post EC-CUBE エディター内で使用できるタグを追加する first appeared on risalog.]]>
https://risalog.org/ec-cube-allowed-tag/feed/ 0
EC-CUBE テンプレートからブロックを読み込む https://risalog.org/ec-cube-read-bloc/?utm_source=rss&utm_medium=rss&utm_campaign=ec-cube-read-bloc https://risalog.org/ec-cube-read-bloc/#respond Tue, 25 Aug 2020 03:02:17 +0000 http://risalog.org/?p=145 PC SP <!–{include_php file=だとsmartyタグがそのまま表示されるので、<!–{include file=を使う。 <!–{$smarty […]

The post EC-CUBE テンプレートからブロックを読み込む first appeared on risalog.]]>
PC
<!--{include_php file="`$smarty.const.TEMPLATE_REALDIR`frontparts/bloc/aaa.tpl"}-->
<!--{include file="`$smarty.const.TEMPLATE_REALDIR`frontparts/bloc/aaa.tpl"}-->

SP

<!--{include file="`$smarty.const.SMARTPHONE_TEMPLATE_REALDIR`frontparts/bloc/aaa.tpl"}-->

<!–{include_php file=だとsmartyタグがそのまま表示されるので、<!–{include file=を使う。

<!–{$smarty.const.HTTP_URL}–>
<!–{$TPL_URLPATH}–>

システム設定>パラメーター設定から、パラメーターを確認できる。

The post EC-CUBE テンプレートからブロックを読み込む first appeared on risalog.]]>
https://risalog.org/ec-cube-read-bloc/feed/ 0