Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: sul.novak on December 11, 2017, 06:48:56 AM

Title: Show breadcrumbs at the bottom.
Post by: sul.novak on December 11, 2017, 06:48:56 AM
I have installed the Redsy theme (https://custom.simplemachines.org/themes/index.php?lemma=2833) and users are complaining that there are no breadcrumbs (link tree) at the bottom of a thread page.

Please advise how to add the breadcrumbs at page bottoms.
Title: Re: Show breadcrumbs at the bottom.
Post by: Sir Osis of Liver on December 11, 2017, 11:38:01 AM
Here's where it is in Curve -

Display.template.php



// Show the page index... "Pages: [1]".
echo '
<div class="pagesection">
', template_button_strip($normal_buttons, 'right'), '
<div class="pagelinks floatleft">', $txt['pages'], ': ', $context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' &nbsp;&nbsp;<a href="#top"><strong>' . $txt['go_up'] . '</strong></a>' : '', '</div>
<div class="nextlinks_bottom">', $context['previous_next'], '</div>
</div>';

// Show the lower breadcrumbs.
theme_linktree();