Recent Topics

1 Jan 08, 2008 22:12    

My b2evolution Version: 1.10.x

The "Full Name" of the blog is not only displayed on the pages of the blog but is also used for the title of the pages.

I want to use the full name as the title but not have it display on the page.

I am using Nautica2 skin.

What's the simplest way to do this? I have tried many ways to apply a style sheet to make it invisible (i.e., transparent) but to no avail. My knowledge of PHP is limited but I am very good at following instructions.

TIA,
:: Clay

3 Jan 09, 2008 02:44

Sam:

Thanks for the link. That does not appear to be what I am looking for. However, it did suggest looking at the source a little more closely.

In _main.php file for Nautica2lg skin I see the following fragments:

<title><?php
$Blog->disp('name', 'htmlhead');
request_title( ' - ', '', ' - ', 'htmlhead' );
?></title>

AND

<div id="wrapper-header3">
<h1 align="center"><a href="<?php bloginfo('url'); ?>"><?php $Blog->disp( 'name', 'htmlbody' ) ?></a><br />
</h1>
</div>

I want to display the 'name' in the <title> block but not the wrapper-header3 block. Is it as simple as just deleting the entire content of the div?

4 Jan 09, 2008 02:53

It's worth a try :)

Just remember to backup files before you edit them...

5 Jan 09, 2008 02:55

Try to remove

<?php $Blog->disp( 'name', 'htmlbody' ) ?>

6 Jan 09, 2008 15:19

Thanks Sam2kb - that did the trick.

sam2kb wrote:

Try to remove

<?php $Blog->disp( 'name', 'htmlbody' ) ?>

But not the ENTIRE CONTENT of the div :)


Form is loading...