Product Level Directive Documentation
Edit on
Codepen.io
Codepen.io
data-fsc-item-priceValueWithoutTax
Price value without tax – numeric
x
35
1
Price:
2
<span data-fsc-item-path="phot-io-main-app" data-fsc-item-priceValue>
3
<!--This value will be replaced-->
4
</span><br />
5
Price without tax:
6
<span data-fsc-item-path="phot-io-main-app" data-fsc-item-priceValueWithoutTax>
7
<!--This value will be replaced-->
8
</span><br />
9
Tax:
10
<span data-fsc-order-tax>
11
<!--This value will be replaced-->
12
</span>
13
14
<!--
15
DEMO SETUP
16
- Initialize the Store Builder Library
17
-->
18
<script
19
id="fsc-api"
20
src="https://sbl.onfastspring.com/sbl/1.0.2/fastspring-builder.min.js"
21
type="text/javascript"
22
data-storefront="fastspringexamples.test.onfastspring.com/popup-fastspringexamples">
23
</script>
24
25
<!--
26
DEMO INFO
27
- Reset cart
28
- Add product to cart (This is only needed to show order tax amount)
29
- Change country to Germany to display VAT
30
-->
31
<script>
32
fastspring.builder.reset();
33
fastspring.builder.add("phot-io-main-app");
34
fastspring.builder.country("de");
35
</script>
1
1
1
1