Re: [解決済み] 商品の売り切れ表示について

フォーラム 使い方全般 [解決済み] 商品の売り切れ表示について Re: [解決済み] 商品の売り切れ表示について

#59325
nanbu
キーマスター

テーマのhome.php 26?28行目

<?php if (usces_is_skus()) : ?>
<div class="price"><?php _e('$', 'usces'); ?><?php usces_the_firstPrice(); ?><?php usces_guid_tax(); ?></div>
<?php endif; ?>

を次のように変更します。

<?php if (usces_is_skus()) : usces_have_skus()?>
<?php if ( '売切れ' == usces_the_itemZaiko('return')): ?>
<div class="price"><?php usces_the_itemZaiko(); ?></div>
<?php else: ?>
<div class="price"><?php _e('$', 'usces'); ?><?php usces_the_firstPrice(); ?><?php usces_guid_tax(); ?></div>
<?php endif; ?>
<?php endif; ?>

UTF-8で保存するのをお忘れなく。