Styling Select Attributes
Permalink
I'd like to add a listing markup to every option the user checks within a select page attribute.
Currently, the outcome is:
option1 option2 option3 option4...
What I want is:
<ul>
<li>option1</li>
<li>option2</li>
<li>option3</li>
<li>option4</li>
<li>...</li>
</ul>
Any help is greatly appreciated
Thanks!
Currently, the outcome is:
option1 option2 option3 option4...
What I want is:
<ul>
<li>option1</li>
<li>option2</li>
<li>option3</li>
<li>option4</li>
<li>...</li>
</ul>
Any help is greatly appreciated
Thanks!
concrete > models > attribute > types > select > controller.php
I changed to the following:
I'm aware this is not ideal, but until a better method is found this will work out...