I'd like to have a real title for the first page of the content table, maybe by starting the article with a h3 tag. How can it be done?
Thanks

Comments

mundanity’s picture

Hi there,

Right now this is not possible. If I can come up with an easy method to handle that I'll add it, but to be honest, unless a lot of people are really after this feature, it's probably going to be low priority.

mundanity’s picture

Status: Active » Postponed
helderluis’s picture

Can you tell us where in the code can we change that? Because all i want is to give it a single name, like "overview" instead of the page title. This would show on all the pages with the table of contents.

mundanity’s picture

Hi there,

If you want to replace the first page title with the same string for all paginated nodes, you can change line 622 (assuming you're using the latest dev release), within the method call getToc():

// From:
    $headers[0] = menu_get_active_title();

// To:
    $headers[0] = 'Overview';
helderluis’s picture

Thank you very much, great help. Cheers

mundanity’s picture

Status: Postponed » Closed (works as designed)