Hallo,
ich möchte nach den Warenkorb dem Besteller seine Angaben noch mal anzeigen. Dort soll auch die Liefer- und Rechnungsart aufgeführt werden. Leider bekomme ich immer nur die Lieferart angezeigt.
Für die Ausgabe benutze ich die Feder ###SHIPPING_TITLE### und ###PAYMENT_TITLE###.
Was mache ich falsch?
Meine Config
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47:
| plugin.tt_products { payment > payment { radio = 1 20.title = Rechnung (nur für Gliederungen) 20.priceTax = 20.image.file = 20.message = Andreas 30.title = Bankeinzug (nur für Gliederungen) 30.image.file = 30.priceTax = 40.title = Bankeinzug 40.image.file = 40.priceTax = 50.title = Vorkasse 50.image.file = 50.priceTax = 60.title = Zahlung bei Abholung 60.image.file = 60.priceTax = } shipping { radio = 1 10.title = Post 10.image.file = 10.priceTax = 5,00 10.excludePayment = 30, 60 20.title = Paketdienst 20.image.file = 20.priceTax = 12,00 20.excludePayment = 30, 60 40.title = Selbstabholer 40.excludePayment = 0,00 40.excludePayment = 50, 40 } } |
Ausgabe:
HTML-Code:
<tr> <td colspan="3" style="background-color:#b9d4e4;color:#0072bc;font-weight:bold"> <b>Lieferung/Zahlung:</b> </td> <td colspan=3> </td> </tr> <TR> <td valign="top" colspan="3"> <strong>Liefermethode:</strong> <br /> <font style="font-weight:bold;color:#0072bc">###SHIPPING_TITLE###</font> </td> <td valign="top" align="right" colspan="3"> <b>###PRICE_SHIPPING_TAX###</b> </td> </TR> <TR> <td valign="top" colspan="3"> <strong>Zahlungsmethode:</strong> <br />
###PAYMENT_TITLE###
<!-- ###MESSAGE_PAYMENT###
This whole subpart, message_payment is substituted with the subpart 'message_payment_[number-of-method-in-typoscript]'
--> <!-- ###MESSAGE_PAYMENT_10### begin --> <!--<B>Wir liefern ausschließlich gegen Rechnung!</b> --> <!-- ###MESSAGE_PAYMENT_10### end --> <!-- ###MESSAGE_PAYMENT### -->
###GW2E###
</td>