I switched from Decaf to Cafe con lathe

I switched from Decaf to Cafe con lathe

by Ger Tielemans -
Number of replies: 1

I love the extra options from Cafe con lathe wityh one exception: when you give tab zero a name, this name is annoying visible above the tabs. By this little change that is solved:

    //Insert the section 0
    $section = 0;
    $thissection = $sections[$section];

    if ($thissection->summary or $thissection->sequence or $PAGE->user_is_editing())
    {
        echo '<ul class="sectionul"><li id="sectiontd-0" class="section main yui3-dd-drop">';

        echo '<div class="content">';

 // do not echo above the tabs
        if (!empty($thissection->name))
        {
           // echo $OUTPUT->heading(format_string($thissection->name, true, array('context' => $context)), 3, 'sectionname');
        }

        echo '<div class="summary">';

Average of ratings: -
In reply to Ger Tielemans

Re: I switched from Decaf to Cafe con lathe

by Derek Chirnside -

Ger, what is "Cafe con lathe", what tabs are you referring to?

-Derek