Toutouwai / MinimalFieldset

Adds a config option to fieldsets to render them without label or padding in Page Edit.
Mozilla Public License 2.0
8 stars 0 forks source link

Does not work on current PW master #2

Closed eelke closed 5 years ago

eelke commented 5 years ago

I installed the module (v0.1.3) on an existing site, running PW in the current Master release, v3.0.98 on Php 7.2. After enabling the module for a regular Fieldset (Open) I kept running into this error:

Method InputfieldFieldsetOpen::wrapClass does not exist or is not callable in this context

This is because Inputfield::wrapClass() has not been added to the Master yet, it is only available on the ProcessWire dev release (currently 3.0.119).

The fix for this issue is to replace lines 107-109 with:

// Add classes to inputfield
$inputfield->wrapClass .= ' MinimalFieldset';
if(!$field->no_spacing) $inputfield->wrapClass .= ' MinimalFieldsetSpaced';