返信先: 在庫数を表示させたが、在庫があるのに在庫数が0になる
フォーラム › 使い方全般 › 在庫数を表示させたが、在庫があるのに在庫数が0になる › 返信先: 在庫数を表示させたが、在庫があるのに在庫数が0になる
2019年10月29日 12:45 PM
#88729
kana
参加者
お返事ありがとうございます。
下記のように書いておりますが、合っていますでしょうか?(<?php usces_the_itemZaiko(); ?>の隣です)
よろしくお願いいたします。
<?php if(usces_sku_num() === 1) : usces_have_skus(); ?>
<!–1SKU(SKUを1つしかもたない時の表示)–>
<h1 class=”item_page_title”><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php if( $item_custom = usces_get_item_custom( $post->ID, ‘list’, ‘return’ ) ) : ?>
<?php if( $item_custom = usces_get_item_custom( $post->ID, ‘list’, ‘return’ ) ) : ?>
<?php echo $item_custom; ?>
<?php endif; ?>
<!– end of exp –>
<section class=”orderitem”>
<?php if( usces_the_itemCprice(‘return’) > 0 ) : ?>
<dl>
<dt class=”field_name”><?php _e(‘List price’, ‘usces’); ?><?php usces_guid_tax(); ?></dt>
<dd class=”field_cprice”><?php usces_the_itemCpriceCr(); ?></dd>
</dl>
<?php endif; ?>
<dl>
<dt class=”field_name”><?php _e(‘selling price’, ‘usces’); ?><?php usces_guid_tax(); ?></dt>
<dd class=”field_price”><?php usces_the_itemPriceCr(); ?></dd>
</dl>
<dl>
<dt class=”field_name”><?php _e(‘stock status’, ‘usces’); ?></dt>
<dd><?php usces_the_itemZaiko(); ?>(在庫数:<?php usces_the_itemZaikoNum(); ?>)</dd>
</dl>
<dl>
<dt class=”field_name”><?php _e(‘List price’, ‘usces’); ?><?php usces_guid_tax(); ?></dt>
<dd class=”field_cprice”><?php usces_the_itemCpriceCr(); ?></dd>
</dl>
<?php endif; ?>
<dl>
<dt class=”field_name”><?php _e(‘selling price’, ‘usces’); ?><?php usces_guid_tax(); ?></dt>
<dd class=”field_price”><?php usces_the_itemPriceCr(); ?></dd>
</dl>
<dl>
<dt class=”field_name”><?php _e(‘stock status’, ‘usces’); ?></dt>
<dd><?php usces_the_itemZaiko(); ?>(在庫数:<?php usces_the_itemZaikoNum(); ?>)</dd>
</dl>
<?php if( $item_custom = usces_get_item_custom( $post->ID, ‘list’, ‘return’ ) ) : ?>
<?php echo $item_custom; ?>
<?php endif; ?>
<form action=”<?php echo USCES_CART_URL; ?>” method=”post”>
<?php usces_the_itemGpExp(); ?>
<?php usces_the_itemGpExp(); ?>
<?php if (usces_is_options()) : ?>
<table class=’skusingle’>
<?php while (usces_have_options()) : ?>
<tr><th><?php usces_the_itemOptName(); ?></th><td><?php usces_the_itemOption(usces_getItemOptName(),”); ?></td></tr>
<?php endwhile; ?>
</table>
<?php endif; ?>
<?php if( !usces_have_zaiko() ) : ?>
<table class=’skusingle’>
<?php while (usces_have_options()) : ?>
<tr><th><?php usces_the_itemOptName(); ?></th><td><?php usces_the_itemOption(usces_getItemOptName(),”); ?></td></tr>
<?php endwhile; ?>
</table>
<?php endif; ?>
<?php if( !usces_have_zaiko() ) : ?>
<?php echo apply_filters(‘usces_filters_single_sku_zaiko_message’, __(‘Sold Out’, ‘usces’)); ?>(在庫個数 : <?php usces_the_itemZaikoNum(); ?>)
<?php else : ?>
<?php _e(‘Quantity’, ‘usces’); ?><?php usces_the_itemQuant(); ?><?php usces_the_itemSkuUnit(); ?><?php usces_the_itemSkuButton(__(‘Add to Shopping Cart’, ‘usces’), 0); ?>
<?php usces_singleitem_error_message($post->ID, usces_the_itemSku(‘return’)); ?>
<?php endif; ?>
<!– end of skuform –>
<?php echo apply_filters(‘single_item_single_sku_after_field’, NULL); ?>
<?php do_action(‘usces_action_single_item_inform’); ?>
</form>
</section><!– end of action-section –>