Hi All. I want to update my page titles dynamically with the applicable title in the selected language (Chapter 17 - Forum). I have searched the web without success. My code below shows the default "Website Name". Any help will be much appreciated.
Regards.
header.html snippet
<!-- Page title -->
<title><?php // Use the default page title if one was not provided:
if (isset($page_title)) {
echo $page_title;
} else {
echo 'Website Name';
}
?></title>
signup.php snippet
// Include the page title:
$page_title = $words['signup'];