会員のみに価格を表示させたく
https://welcustom.net/members-only-ecshop/#1
↑を参考にあれこれしているのですが、
wc_item_single.php
下記のコードをどの部分に記載すればいいのかわからず、アドバイスを頂きたいです。
<?php if( usces_the_itemCprice(‘return’) > 0 ) : ?>//定価の設定がある場合
<?php _e(‘List price’, ‘usces’); ?><?php usces_guid_tax(); ?><?php usces_the_itemCpriceCr(); ?>//定価
<?php endif; ?>
<?php _e(‘selling price’, ‘usces’); ?><?php usces_guid_tax(); ?><?php usces_the_itemPriceCr(); ?>//販売価格
<?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 else: ?>
<?php echo usces_loginout(); ?>//ログインボタン
“><?php _e(‘New enrollment for membership.’,’usces’) ?>//新規会員登録
<?php endif; ?>