Hello!
My problem is easy: I don't want the name of the website appearing on the top.

I found:

	<?php if ($title): ?>
        					<h1 class="title" id="page-title">
         			 			<?php print $title; ?>
        					</h1>
     				 	<?php endif; ?>

that I can put away, then my problem disappears as the title on the frontage.

But if I put it away , then in the node, the article has no title...

Comments

danpros’s picture

Status: Active » Fixed

Hi,

If you want only disable the site name you can go to Simpler theme settings.

If you want to change the placement the code you must change is below code

		<?php if ($site_name): ?>
			<?php if ($is_front) : ?>
			<h1><a href="<?php print $base_path ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a></h1>
			<?php endif; ?>
			<?php if (!$is_front) : ?>
			<h2><a href="<?php print $base_path ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a></h2>
			<?php endif; ?>
		<?php endif; ?>

Dan

detorped’s picture

OOOooops sorry, I made a mistake: because of themekey, it was not the name of the website but of the category. And it is much harder to remove :/

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

A ")" too much :)