yamapota
投稿の際は下記の情報をお書き添えください。
-------------------------------------------
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)
症状を確認したブラウザ:
サーバー【重要】:(会社名、サービス名)
--------------------------------------------
フォーラムへの返信
-
投稿者投稿
-
yamapota参加者
>yasumax様
お返事が遅れまして申し訳ございませんでした。いただいた内容を試したところ、skuの切り替えがうまくいきました!
在庫切れ時に「お問い合わせ」ボタンが出なくなるなど別の問題も
出てきておりますが、光明が見えてきた感じです。ご教示いただきましてありがとうございます。
yamapota参加者ohnishi様 yasumax様
ご返信ありがとうございます。
頂いた点の修正を試してみます。>yasumax様
usces_have_zaiko()の分岐は不要と言うのは、コードの下記(最後に添付)から、
<?php if( usces_have_zaiko() ): ?>、 <?php else: ?>、 <?php endif; ?>
の3つを削除するということでしょうか。それとも他に修正必要でしょうか。
現状、↑とloading画像の指定以外を反映しているところですが、
①プルダウンは表示されるようになった②プルダウンもラジオボタンも
カートに入れる際は1つ目のskuの分が入るという状況です。以上、何卒よろしくお願いいたします。
<?php if( usces_have_zaiko() ): ?> <?php if (usces_is_options()): while (usces_have_options()) : ?> <table class="item-option"> <tbody> <tr><td><?php usces_the_itemOptName(); ?></td><td><?php usces_the_itemOption(usces_getItemOptName(),''); ?></td></tr> </tbody> </table> <?php endwhile; endif; ?> <span class="item-quant"><?php usces_the_itemQuant(); ?></span><?php usces_the_itemSkuUnit(); ?> <?php usces_the_itemSkuButton(' ' .__( 'Add to Cart', 'blanc' ), 0); ?> <?php else: ?> <span class="ss_stockstatus"><?php $stock = usces_get_itemZaiko( 'name' ); ?></span> <?php echo sprintf(__('<p class="item-stock">This item is currently %s.</p>', 'blanc'), $stock ); ?> <span class="ss_stockstatus"><?php echo apply_filters('usces_filters_single_sku_zaiko_message', esc_html(usces_get_itemZaiko( 'name' ))); ?></span> <?php endif; ?>
yamapota参加者>ohnishi様
コメントありがとうございました。
コードは下記になります。無茶苦茶な修正をしているかもしれませんが、
何卒よろしくお願いいたします。<?php get_header();?> <?php get_template_part('breadcrumbs-item'); ?> <article <?php post_class(); ?>> <?php if( have_posts() ): the_post(); ?> <?php usces_remove_filter(); ?> <?php usces_the_item(); ?> <?php usces_have_skus(); ?> <div class="row"> <div class="columns medium-7"> <div class="flexslider slider-item"> <ul class="slides"> <li><a>" <?php echo apply_filters('usces_itemimg_anchor_rel', NULL); ?>><?php usces_the_itemImage(0, 640, 640, $post); ?></a></li> <?php $imageid = usces_get_itemSubImageNums(); if($imageid): foreach ( $imageid as $id ) : ?> <li><a>" <?php echo apply_filters('usces_itemimg_anchor_rel', NULL); ?>><?php usces_the_itemImage($id, 640, 640, $post); ?></a></li> <?php endforeach; endif; ?> </ul> </div> <?php if( $imageid ): ?> <div class="flexslider"> <ul class="slides"> <li><?php usces_the_itemImage(0, 200, 200, $post); ?></li> <?php foreach ( $imageid as $id ) : ?> <li><?php usces_the_itemImage($id, 200, 200, $post); ?></li> <?php endforeach; ?> </ul> </div> <?php endif; ?> </div><!-- columns --> <div class="columns medium-5"> <h1 class="entry-title item-title" itemprop="name"><?php usces_the_itemName(); ?></h1> <time datetime="<?php echo get_the_date('c'); ?>" class="updated hide"><?php echo get_the_date(); ?></time> <form action="<?php echo USCES_CART_URL; ?>" method="post" class="skuform"> <?php wcex_sku_select_form(); ?> <div> <meta itemprop="availability" href="http://schema.org/InStock" content="<?php usces_the_itemZaiko(); ?>"> <div class="item-price text-gray"> <?php if( usces_the_itemCprice('return') > 0 ) : ?> <div class="field_cprice"><span class="ss_cprice"><?php usces_the_itemCpriceCr(); ?><?php usces_guid_tax(); ?></span></div> <?php endif; ?> <span itemprop="price"> <b class="font-bigger"><div class="field_price"><span class="ss_price"><?php usces_the_itemPriceCr(); ?></span></div></b><?php usces_guid_tax(); ?> </span> </div> <?php usces_the_itemGpExp(); ?> <?php if( usces_have_zaiko() ): ?> <?php if (usces_is_options()): while (usces_have_options()) : ?> <table class="item-option"> <tbody> <tr><td><?php usces_the_itemOptName(); ?></td><td><?php usces_the_itemOption(usces_getItemOptName(),''); ?></td></tr> </tbody> </table> <?php endwhile; endif; ?> <span class="item-quant"><?php usces_the_itemQuant(); ?></span><?php usces_the_itemSkuUnit(); ?> <?php usces_the_itemSkuButton(' ' .__( 'Add to Cart', 'blanc' ), 0); ?> <?php else: ?> <span class="ss_stockstatus"><?php $stock = usces_get_itemZaiko( 'name' ); ?></span> <?php echo sprintf(__('<p class="item-stock">This item is currently %s.</p>', 'blanc'), $stock ); ?> <span class="ss_stockstatus"><?php echo apply_filters('usces_filters_single_sku_zaiko_message', esc_html(usces_get_itemZaiko( 'name' ))); ?></span> <?php endif; ?> <?php echo apply_filters('single_item_single_sku_after_field', NULL); ?> </div> <?php do_action('usces_action_single_item_inform'); ?> </form> <?php do_action('usces_action_single_item_outform'); ?> <?php usces_singleitem_error_message($post->ID, usces_the_itemSku('return')); ?> <?php if( $item_custom = usces_get_item_custom( $post->ID, 'table', 'return' ) ){ echo $item_custom; } ?> <div> <?php the_content(); ?> <?php the_tags('<p class="text-gray"><i class="fa fa-tag"></i> ', ',', '</p>'); ?> </div> </div><!-- columns --> </div><!-- row --> <div class="row"> <div class="columns"> </div> </div> <?php endif; ?> </article> <?php get_footer(); ?>
-
投稿者投稿