Closed (fixed)
Project:
Editable Fields
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Mar 2012 at 14:04 UTC
Updated:
23 Sep 2013 at 21:31 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
rsgracey commentedI'm getting this doubling, too. No matter what the choices in the content type display, if the label is there are no labels, and if it's Inline or Above, there are two.
Comment #2
johnvII have this problem, but not for all fields:
- a list field is OK
- a date fieldhas double label and further markup.
Comment #3
kriboogh commentedThe problem is the label is displayed for each field using the display mode settings, but the markup of the field is a complete form render, thus duplicating the label. You need to disable the label for the form generation.
In editablefields.module inside hook_field_formatter_view you should set the label to hidden. (notice the added $display['label'] = 'hidden'; line)
Comment #4
ankur commentedHere's a patch that does what kriboogh suggests in comment #3 above. Works for me.
Comment #5
Anonymous (not verified) commentedGreat, it works for me, as expected.
Comment #6
dags commentedTested and works but I'm going to hold off on committing this for now while I investigate a couple other issues.
Comment #7
drupalok commentedhow about commiting now?
Comment #8
Anonymous (not verified) commentedPatch worked for me, thank you.
Comment #9
dags commentedAnd over a year later... Committed to 7.x-1.x! Thanks for the patch ankur.
I regret that I haven't had more time to maintain this module.. I'll try to give it some tender loving care over the next couple of weeks.
Comment #10
dags commented