Product Level Directive Documentation
Edit on
Codepen.io
Codepen.io
data-fsc-item-discountTotalValue
Discount price total for product – numeric
x
31
1
<!--
2
DEMO INFO
3
discountTotalValue will show the numeric total amount removed from the order.
4
-->
5
Discount Total Value:
6
<span data-fsc-item-path="phot-io-main-app-discount" data-fsc-item-discountTotalValue>
7
<!--This value will be replaced-->
8
</span>
9
10
<br><br>
11
12
Order Total:
13
<span data-fsc-order-total>
14
<!--This value will be replaced-->
15
</span>
16
17
<!--
18
DEMO SETUP
19
- Initialize the Store Builder Library
20
- Add discounted product to cart (or apply coupon)
21
-->
22
<script
23
id="fsc-api"
24
src="https://sbl.onfastspring.com/sbl/1.0.2/fastspring-builder.min.js"
25
type="text/javascript"
26
data-storefront="fastspringexamples.test.onfastspring.com/popup-fastspringexamples">
27
</script>
28
29
<script type="text/javascript">
30
fastspring.builder.update('phot-io-main-app-discount', 5);
31
</script>
1
1
1
1