|
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
Hi, thanks for the wonderful module, I really like this module, it makes my life a lot more easier. it works well in one of my site, however it got a white screen problem in my development server which running on XAMPP. Could you please give advise,whether I need to set special php setting or whatever may caused this?
Thank you very much
This happened to me not too long ago. White screen probably means you have to increase your server's memory settings. I would do a search on drupal.org for "white screen" and you'll find specific info on how to change your settings.
Release 1.5 corrects the problem