I am submitting this as a feature request, although it may just be a configuration setting I am not aware of.
I would like the ability to default the ecard form to the collapsed version.

Comments

mssarath’s picture

in the module file , line number 218-223 you can see this code.

$form['block'] = array(
'#type' => 'fieldset',
'#title' => t('Send this card'),
'#collapsible' => TRUE,
'#collapsed' => FALSE
);

please change the field '#collapsed' => TRUE, from FALSE.

it will look like this

$form['block'] = array(
'#type' => 'fieldset',
'#title' => t('Send this card'),
'#collapsible' => TRUE,
'#collapsed' => TRUE
);

i don't know whether i should implement it in module, it just a small value change

sarath

spopovits’s picture

Thank you, that worked perfectly. My issue is resolved, if you want to add this to the module as a future release that is your perogative.

spopovits’s picture

Status: Active » Closed (fixed)