Select Page
Order Level Directive Documentation
Edit on
Codepen.io

data-fsc-order-totalWithTax

‘Pretty’ (order-totalValue + order-taxValue) – string


x
23
 
1
Total With Tax:
2
<span data-fsc-order-totalWithTax>
3
    <!--This value will be replaced-->
4
</span>
5
6
<!--
7
    DEMO SETUP
8
        - Initialize the Store Builder Library
9
        - Change country to Germany to enable VAT 
10
            (US tax is calculated on checkout by zip)
11
        - Add product to cart to calculate VAT
12
-->
13
<script
14
    id="fsc-api"
15
    src="https://sbl.onfastspring.com/sbl/1.0.2/fastspring-builder.min.js"
16
    type="text/javascript"
17
    data-storefront="fastspringexamples.test.onfastspring.com/popup-fastspringexamples">
18
</script>
19
20
<script type="text/javascript">
21
    fastspring.builder.country("de");
22
    fastspring.builder.add("phot-io-main-app");
23
</script>
1
 
1
1
 
1

Related Topics