Recent Topics

1 Mar 01, 2007 11:37    

My b2evolution Version: Not Entered

How do I create the tagline directly under the name, instead of having a blank line then the tagline?


<h1><?php $Blog->disp( 'name', 'htmlbody' ) ?></h1>
<h3><?php $Blog->disp( 'tagline', 'htmlbody' ) ?></h3>

I'd like to put the date before issue time


<?php
		$Item->permanent_link( '#icon#' );
		echo ' ';
		$Item->issue_time();
		echo ', by ';
		$Item->author();
		$Item->msgform_link( $Blog->get('msgformurl') );
		echo ', ';
		$Item->wordcount();
		echo ' ', T_('words');
?>

when I click on next it does not show the next page, it shows ONE post way back in 2005.


<?php posts_nav_link(); ?>

[/code]

2 Mar 01, 2007 12:13

The gap is caused by the margings on the h1 and h3 tags. You can remove them with css

To display the date just use : $Item->issue_date();

Tad hard to sort the link problem without seeing your blog.

¥

6 Mar 02, 2007 10:02

Still having the problem. My blog2 directory minus images and media and other skins is here: **link removed**

*edit*
I removed the link to your zip because it contains conf/_basic.config.php ;)
¥

7 Mar 02, 2007 10:05

"title=Blog" is most certainly not coming from anything you'll find in that thread! It'll fix some issues that come from using some skins for 1.8.* on a 1.9.* blog, but not that one. Here's a really neat idea that might (or might not!) help: [url=http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.jhsands.com%2Fblog2%2Findex.php]validate your xhtml[/url] so you can [url=http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A%2F%2Fwww.jhsands.com%2Fblog2%2Findex.php]validate your css[/url]. Validating your code (both xhtml and css) is not a promise that all will be well, but it's a good start. If nothing else you will ensure that a wider range of browsers and surfing tools and people out there will be able to experience your web.

Anyway the stuff about pingback won't help you with the title=blog issue.

8 Mar 02, 2007 10:29

I'm betting that your problem is caused by this section of code ;)

<?php
$site = "Jason Sands [ JHSANDS ] [ JASON H SANDS ] ";
$title = "Blog ";
$bbclonetitle = "Blog";
require("/home/jhsands/www/includes/header.php"); 
?>

You should be able to cure it by doing something like :-

<?php
$site = "Jason Sands [ JHSANDS ] [ JASON H SANDS ] ";
$old_title = ( empty( $title ) ? NULL : $title );
$title = "Blog ";
$bbclonetitle = "Blog";
require("/home/jhsands/www/includes/header.php"); 
$title = $old_title;
?>

¥

9 Mar 02, 2007 11:37

That fixed it :) My code from the rest of the site interferred! lol

Thank you, Yabba!


Form is loading...