in reply to HTML::FormFu element removal...

You probably want:
$foo_element->parent->remove_element( $foo_element );
This is because get_field is recursive, whereas remove_element isn't.

Replies are listed 'Best First'.
Re^2: HTML::FormFu element removal...
by s2cuts (Acolyte) on Jun 01, 2011 at 16:35 UTC
    Yup, you are bang on. I did my best going through the docs, but...

    Many many thanks, and to all who gave input.