Menu

#660 Month view, Change the booking title

open
nobody
None
1
2015-01-08
2015-01-08
Anonymous
No

How can I change the booking list title on the month view.

For example, now,
"10:30~12:00 (title)" >> "10:30~12:00 (line break) (title)"
I want to insert "br" tag between time and title.

Discussion

  • Campbell Morrison

    If you are running MRBS 1.4.11 you'll need to change line 464 of month.php from

            $full_text = $slot_text . " " . $description_text;
    

    to

            $full_text = $slot_text . "<br>" . $description_text;
    

    You'll also need to set

    $clipped_month = FALSE;
    

    in your config file in order to be able to see the second line. Or else if you only want to see two lines at most, change the max-height in line 270 of mrbs.css.php.