I solved this problem:
Edit line 128 (or thereabouts) in this template file:
Dataface_Form_Section_Template.html
Original:
- Code: Select all
{if $element.field.widget.columns}{assign var=cols value=$element.field.widget.columns}{else}{assign var=cols value=3}{/if}
Change to:
- Code: Select all
{if $element.field.widget.columns}{assign var=cols value=$element.field.widget.columns}{else}{assign var=cols value=2}{/if}
This looks to be a global change, so it might not work out if you want to target specific elements (though I'm guessing SMARTY provides the ability to target specific columns through an if statement).