XF 1.5 How to show checkbox field's result next to each other

Dadparvar

Well-known member
Hi,

I created a custom field and it is using "Check Boxes" as Field Type. (this field let users to choose their time of working during a day)
(Imagine a user choose this hours: 8, 9, 10, 11, 12, 16, 17, 18, 19)
Now it shows like this to users:
Code:
8
9
10
11
12
16
17
18
19
How can I set it to show like this in item page?:
Code:
8, 9, 10, 11, 12, 16, 17, 18, 19
The same is for work days. (another field)

Regards
 
Have a look at the custom_field_view template. You may be able to modify the HTML there, though this would apply to any field (without various conditionals).
 
Top Bottom