As the title suggest, how will I know if I’m on Joomla! home page?
for example:
if('ImOnHomePage'){ do this... }else{ do this instead... }
A quick answer should be via PHP $_SERVER global variable:
<?php $uri = $_SERVER['REQUEST_URI']; if ($uri == "/" || $uri == '/home.html') { echo 'Im on home page'; }else{ echo 'Im not on home page'; } ?>
Please before trying to update or change your templates/TemplateName/index.php file please do make a backup. It can save your life