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

joenavran’s picture

Version: 5.x-1.x-dev » 5.x-1.4

i jumped to the new version, but i till need this feature/help

Zen’s picture

Title: collapsive quotes -i need help » Collapsible quotes
Version: 5.x-1.4 » 7.x-1.x-dev
ivnish’s picture

Issue summary: View changes
Status: Active » Closed (outdated)