Is there a way to move a form field's description with #description_display for fields that are using the theme field_multiple_value_form() ?

For now, I'm able to move the description for normal textfield but not the field_multiple_value_form().

Thanks!

Comments

eric_eclipse created an issue. See original summary.

markhalliwell’s picture

Status: Active » Closed (won't fix)

You'll need to override theme_field_multiple_value_form() in your sub-theme to mimc what has already been done in bootstrap_form_element().

Unfortunately, 7.x-3.x is no longer HEAD and adding new features like this aren't likely to make it in. We'd have to override the entire theme hook and it's very complicated. I don't want to risk breaking existing sites.

ericpoir’s picture

Hi Mark,

Thanks for the quick response!

I'll use theme_field_multiple_value_form() and post back my solution here.