How to show subtotal in catalog item while ordering a item in Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2023 03:11 AM
Hi all,
Help me to show the subtotal in portal page while ordering the catalog item
in above screen shot, below price i need to show subtotal,
I try with the below community post still no luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2023 12:19 PM
navigate to cart layout and enable Total under components
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2023 06:08 AM
Hi Arasn, I tried this but not working do you any ideas on this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 12:59 AM
In SC catalog item widget,
HTML under Line 183 add the below
<div class="m-b" ng-if="data.showPrices && (data.sc_cat_item.price) || data.sc_cat_item.recurring_price">
<b>${subtotal}:</b> {{c.quantity * data.sc_cat_item.price}}<em ng-if="data.sc_cat_item.recurring_price" class="cat_item_price"> {{data.sc_cat_item.price ? '+' : ''}} {{data.sc_cat_item.recurring_price_display + ' ' + data.sc_cat_item.recurring_price_frequency}}</em>
</div>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 01:00 AM
In SC catalog item widget,
HTML under Line 183 add the below
<div class="m-b" ng-if="data.showPrices && (data.sc_cat_item.price) || data.sc_cat_item.recurring_price">
<b>${subtotal}:</b> {{c.quantity * data.sc_cat_item.price}}<em ng-if="data.sc_cat_item.recurring_price" class="cat_item_price"> {{data.sc_cat_item.price ? '+' : ''}} {{data.sc_cat_item.recurring_price_display + ' ' + data.sc_cat_item.recurring_price_frequency}}</em>
</div>