投稿の際は下記の情報をお書き添えください。
-------------------------------------------
WordPress のバージョン:(例 6.0.2)
Welcart のバージョン:(例 2.8.1)
PHP のバージョン:(例 8.0)
Welcart専用の拡張プラグインとバージョン:(例 DL Seller 3.4.1、SKU Select 1.4.2)
ご利用の親テーマとバージョン :(例 Welcart Basic 1.7.1)
ご利用の子テーマとバージョン :(例 Welcart Beldad 1.4)
症状を確認したブラウザ:
サーバー【重要】:(会社名、サービス名)
--------------------------------------------

フォーラムへの返信

2件の投稿を表示中 - 1 - 2件目 (全2件中)
  • 投稿者
    投稿
  • nawomi
    参加者

    アドバイスありがとうございます。

    template_func.phpのusces_get_cart_rows()周辺の心当たりをいじってみたのですが、上手くいきませんでした。

    よく似た質問の ”「カートの中」デザインのカスタマイズについて ”の質問を参考に「wc_templates」の中の「cart/wc_cart_page.php」と「cart/wc_confirm_page.php」を改変する事で解決できました。

    <thead>

    <tr>

    <th scope=”row” class=”num”><?php _e(‘No.’,’usces’); ?></th>

    <th class=”thumbnail”>  </th>

    <th><?php _e(‘Items’,’usces’); ?></th>

    <th class=”price”><?php _e(‘Unit price’,’usces’); ?></th>

    <th class=”quantity”><?php _e(‘人数’, ‘usces’); ?></th>

    <th class=”subtotal”><?php _e(‘Amount’, ‘usces’); ?></th>

    <th class=”action”></th>

    </tr>

    </thead>

    <tbody>

    <?php usces_get_confirm_rows(); ?>

    のように変えてみました。

    nawomi
    参加者

    なんとか、自己解決する事ができました。

    wc_item_single.phpを以下のように変更する事で、解決いたしました。

    <!– ▼ここからitem-op-inside▼ –>

    <div class=”item-op-inside”>

    <?php if( !usces_have_zaiko() ) : ?>

    <p style=”font-size:13px;color:red;”>売切れ</p>

    <?php else : ?>

    <p class=”quant”>人数: <?php usces_the_itemQuant(); ?></p>

    <p class=”button intersection-img”><?php usces_the_itemSkuButton(__(‘予約する’, ‘usces’), 0); ?></p>

    <?php endif; ?>

    <p><?php usces_singleitem_error_message($post->ID, usces_the_itemSku(‘return’)); ?></p>

    </div>

    <!– ▲item-op-insideここまで▲ –>

    以前の「カートに入れるの変更」の質問が大変参考になりました。

    ありがとうございました。

2件の投稿を表示中 - 1 - 2件目 (全2件中)