im just wondering how to make the quotes collapsed by default, only showing the author, and clinking on the name showing the whole quote.
as i think its a very easy modification, only have to insert the drupal fieldset stuff into the module.
$title = 'Title of your fieldset'; //author
$body = 'What goes inside your fieldset'; //the quote
$fieldset = array(
'#title' => $title,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
'#value' => $body);
print theme('fieldset', $fieldset);
sadly i have no experience in modding modules, anyone can help me out in this case, and create a patch which adds this feature?
Comments
Comment #1
joenavran commentedi jumped to the new version, but i till need this feature/help
Comment #2
Zen commentedComment #3
ivnish