Re: [解決済み] 商品詳細ページに、商品詳細本文のみ表示させたい。

フォーラム テンプレート(テーマ) [解決済み] 商品詳細ページに、商品詳細本文のみ表示させたい。 Re: [解決済み] 商品詳細ページに、商品詳細本文のみ表示させたい。

#65317
seka
参加者

度々失礼いたします。

現在、カートへ入れるボタンと価格表示を削除しています。

カートへ入れるボタンの削除。

<div style=”margin-top:10px”><?php usces_the_itemSkuButton(__(‘Add to Shopping Cart’, ‘usces’), 0); ?></div>

価格表示を削除。

<div class=”field”>

<?php if( usces_the_itemCprice(‘return’) > 0 ) : ?>

<div class=”field_name”><?php _e(‘List price’, ‘usces’); ?><?php usces_guid_tax(); ?></div>

<div class=”field_cprice”><?php usces_the_itemCpriceCr(); ?><?php if( ‘continue’ == dlseller_get_charging_type( $post->ID ) ) : ?>(<?php dlseller_frequency_name($post->ID, ‘amount’); ?>)<?php endif; ?></div>

<?php endif; ?>

<div class=”field_name”><?php _e(‘selling price’, ‘usces’); ?><?php usces_guid_tax(); ?></div>

<div class=”field_price”><?php usces_the_itemPriceCr(); ?><?php if( ‘continue’ == dlseller_get_charging_type( $post->ID ) ) : ?>(<?php dlseller_frequency_name($post->ID, ‘amount’); ?>)<?php endif; ?></div>

</div>