Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
<?php if ($site_name || $site_slogan) : ?>
<div id="branding-wrapper">
<?php if ($site_name) : ?>
<?php if ($is_front) : ?>
<h1 class="site-name"><?php print $site_name ?></h1> // Modified this line to remove the <a> tag
<?php endif; ?>
<?php if (!$is_front) : ?>
<h2 class="site-name"><?php print $site_name ?></h2> // Modified this line to remove the <a> tag
<?php endif; ?>
<?php endif; ?>
Comments
Comment #1
komal.savla commentedHi,
To remove the hyperlink on the sitename, Replace the following code in the page.tpl.php :
With this:
Also add the following style in your .css file
Thanks,
Komal
Comment #2
danpros commentedThanks Komal,
Yes just remove the anchor tag.