1 jhsands Mar 01, 2007 11:37
3 jhsands Mar 02, 2007 04:06
Thanks, Yabba. Got the date and the title fixed. My blog is at http://blog.jhsands.com.
4 yabba Mar 02, 2007 09:15
OK, it's caused by the "title=Blog" in your link, which isn't normal :
http://www.jhsands.com/blog2/index.php?blog=2&title=Blog&page=1&paged=2
Have you made any non-standard changes in your skin or the core files?
¥
5 jhsands Mar 02, 2007 09:34
I am getting the Undefined property: _dataobject.class.php on line 461 error so let me h4x0r that out from http://forums.b2evolution.net/viewtopic.php?t=10868 and I will be back.
6 jhsands 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 edb 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 yabba 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 jhsands Mar 02, 2007 11:37
That fixed it :) My code from the rest of the site interferred! lol
Thank you, Yabba!
10 yabba Mar 02, 2007 11:44
No problem ;)
¥
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.
¥