|
BookMadeSimple
Simplify Book management
Installation
For Drupal 6, clearing cache may be necessary. ConfigurationGo to BookMadeSimple settings and :
or go to content type admin settings and check or uncheck auto create main book page check box. Since 2.0, you can allow child content by content-type Use
TipsTo hide standard Add child page on links, add this line in your css file (before 2.0) : li.book_add_child a{display:none;}To place dropdown listbox at top of links, add this lines in your template.php file : function <your template>_links($links, $attributes = array('class' => 'links')) {
if (array_key_exists("book_made_simple",$links)) {
$a = $links["book_made_simple"];
unset($links["book_made_simple"]);
array_unshift($links,$a);
}
return theme_links($links, $attributes = array('class' => 'links'));
}
|
Sign in to add a comment