The signup form includes only the fields that are have the “signup” checkbox checked.
The “record” form includes all non-admin groups of fields.
So they normally have different fields, but you can change the signup form to include more field by checking the “signup” checkbox on the “manage database fields” page.
I think you don’t understand me. Both shows the same fields, but different is the layout. Signup included between the fields an extra line, the other not.
Here the signup form:
http://oyc.de/clubmitglieder-online/clubmitglied-in-liste-eintragen/
Here the record/edit form:
http://oyc.de/clubmitglieder-online/eintrag-aendern/?pid=FV8TO
Thank you,
Werner Honkomp
I see. You’ll need to add some custom CSS to get them to lay out the way you want. There is a place in the plugin settings where you can add custom CSS rules. Try adding something like this:
.edit-participant input, .pdb-signup input {
margin: 10px 0;
}
That will make them consistent, then you can change it to look how you want.
I adding this code and it works fine now.
Thank you for help,
Werner Honkomp
I add to your CSS code width, it makes the fields larger:
.edit-participant input, .pdb-signup input {
margin: 10px 0;
width: 48%;
}
The CSS code worked well on most of the fields. I have a multi-select checkbox which was badly affected by this. Not something I’m worried about now and will dig into it later but just a warning for anyone else to watch what it does to all of the field types.