I am working on a Swift version of my current live website, early days. I want to make use of the Delivery and Returns tab in the products, for a few products. On previewing, the tab is there, but I cannot find where to enter the text to put on that tab. The implementation guide just says that it is provided, but I cannot find where. Any clues?
Announcement
Collapse
No announcement yet.
Delivery tab in product
Collapse
X
-
Yes, unfortunately Swift is unable to add a multi-line box.
If the content is different for every product, and you don't use if for anything else, you could use the Extended Information Text field instead. Then in the Customisable Product Layout replace
Code:<actinic:variable name="ProductDeliveryAndReturns" />
Code:<actinic:variable name="ExtendedInfoText" />
- 1 like
Comment
-
These single line fields can hold a lot of text but truncate it at the first newline seen.
Luckily you can work around this. Type your text into a plain text editor (like Notepad) as one long line. Use <br> wherever you want a new line.
E.g.
This is the first line<br>Here is the second line<br><br>And here is a new paragraph.
Then copy / paste the text into the Product delivery and returns message field.
There is also another solution where you could use the Extended Info / Text field instead (assuming you're not already using it) but that would require a few changes to your product layout.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
- 1 like
Comment
-
I went a step further and set up additional layouts.
they also have new variables for things that I may need to change like delivery times. Delays due to weather etc.
I can just make 1 change in settings and roll it out across all products. Update a product group on product delays etc.
In the early days I would have to manually change something in every product. During designing my swift site I wanted to automate as much as possible.
it is worth taking the time to work out what would make your site easier to update and incorporate it at this stage.
- 1 like
Comment
Comment