- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2018 07:29 AM
Hi All,
Item price is not visible in widget if the item cost is $0.00 even after removing the HTML condition.
<span class="pull-right item-price font-bold">{{::item.price}}</span>
Please suggest
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2018 08:15 AM
Turns out this fixed it:
Found in:
And proof:
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2018 06:40 AM
This is a custom widget.
I tried with below html but still price is not displaying for the items which has price is $0.00
<span ng-if="item.hasPrice" class="pull-right item-price font-bold">
Please suggest

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2018 06:51 AM
Please read my post....I gave you instructions on what to do.
Thank you
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2018 07:03 AM
I am trying by removing condition itself. In that case, price should be visible for all the items. I tried below scenario as well
<span ng-if="data.showPrices" class="pull-right item-price font-bold">{{::item.price}}</span>
but price is visible only for few items which has >$0.00

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2018 07:08 AM
The way you're trying, is that working for you? It's not right?
So perhaps try my suggestion and put it all back the way it was, then do my edit.
And keep in mind there are two statement with the item.price != 0, so you'll want to edit both.
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2018 07:29 AM
Hi Allen,
I tried all your suggestions but no luck.
Thanks