Advertisement
Mr_media

shopping_cart_config

Jan 11th, 2021
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. #############################################
  2. ## TypoScript added from site_package
  3. #############################################
  4.  
  5.  
  6. plugin.tx_cart {
  7. settings {
  8.  
  9. cart {
  10. pid = 62
  11. }
  12. order {
  13. pid = 64
  14. }
  15.  
  16. addToCartByAjax = 2278001
  17.  
  18.  
  19. allowedCountries {
  20. nl = Nederland
  21. be = Belgie
  22. }
  23. defaultCountry = nl
  24.  
  25.  
  26. payments {
  27. nl {
  28. preset = 1
  29. options {
  30. 1 {
  31. title = Bankoverschrijving
  32. extra = 0.00
  33. taxClassId = 2
  34. status = open
  35. }
  36. }
  37. }
  38. be < .nl
  39. }
  40.  
  41.  
  42. taxClasses {
  43. 1 {
  44. value = 21
  45. calc = 0.21
  46. name = hoog
  47. }
  48. 2 {
  49. value = 9
  50. calc = 0.09
  51. name = laag
  52. }
  53. 3 {
  54. value = 0
  55. calc = 0.00
  56. name = btw vrij
  57. }
  58. }
  59.  
  60.  
  61.  
  62. shippings {
  63. nl {
  64. preset = 1
  65. options {
  66. 1 {
  67. title = Standard verzenden
  68. extra = 5.00
  69. taxClassId = 1
  70. status = open
  71. }
  72. }
  73. }
  74. be < .nl
  75.  
  76. }
  77.  
  78.  
  79. format {
  80. currency {
  81. currencySign = &euro;
  82. decimalSeparator = ,
  83. thousandsSeparator = .
  84. prependCurrency = false
  85. separateCurrency = true
  86. decimals = 2
  87. }
  88. }
  89.  
  90. autoGenerateDocuments {
  91. invoice = 1
  92. delivery = 1
  93. }
  94.  
  95.  
  96. mail {
  97. seller {
  98. attachDocuments {
  99. delivery = 1
  100. }
  101. }
  102. buyer {
  103. attachDocuments {
  104. invoice = 1
  105. }
  106. }
  107. }
  108.  
  109.  
  110. mail {
  111. buyer {
  112. fromAddress = info@italimporta.nl
  113. bccAddress = info@italimporta.nl, info@italimporta.nl
  114. }
  115. seller {
  116. fromAddress = info@italimporta.nl
  117. toAddress = info@italimporta.nl
  118. bccAddress = info@italimporta.nl, info@italimporta.nl
  119. }
  120. }
  121.  
  122. }
  123. }
  124.  
  125.  
  126.  
  127. ########################### additional cart products settings
  128. ##################################################
  129.  
  130. plugin.tx_cartproducts {
  131. settings {
  132. format.currency < plugin.tx_cart.settings.format.currency
  133.  
  134. addToCartByAjax = {$plugin.tx_cart.settings.addToCartByAjax}
  135. }
  136. }
  137.  
  138. ajaxCart = PAGE
  139. ajaxCart {
  140. typeNum = 2278001
  141.  
  142. config {
  143. disableAllHeaderCode = 1
  144. xhtml_cleaning = 0
  145. admPanel = 0
  146. debug = 0
  147. no_cache = 1
  148. }
  149.  
  150. 10 < tt_content.list.20.cart_cart
  151. }
  152.  
  153.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement