1 tapman90 Mar 13, 2006 06:56
3 topanga Jun 24, 2006 10:56
I have to disappoint you, but for all the released versions (from 0.9.x till 1.6) it is not possible.
I've no idea if it will be possible in next releases
4 laibcoms Jun 30, 2006 09:14
No chance of getting added? I mean, its an important feature if not "very important". ;)
5 moonchild Jul 11, 2006 11:58
Maybe kind of cheesy, but what I did was to change the blogIDs in MySQL. Be careful not to change the Linkblog's ID or it won't work.
6 topanga Jul 11, 2006 13:35
Moonchild wrote:
Maybe kind of cheesy, but what I did was to change the blogIDs in MySQL. Be careful not to change the Linkblog's ID or it won't work.
But if you do that, only do it, when you know what you are doing, because there are a few other tables involved to.
The categories for starters.
7 stk Jul 11, 2006 15:28
A non-b2evo way of doing it:
1) Add a unique blogID className (i.e., class="WhateverIsThereNow blog<?php echo $Blog->ID; ?>") to each blog link element.
2) Then, using CSS, position each (relatively) to be in whatever order you want.
THis'll solve your problem, until such time that the capability is added. ;)
8 mikel Jul 11, 2006 18:56
stk wrote:
A non-b2evo way of doing it:
1) Add a unique blogID className (i.e., class="WhateverIsThereNow blog<?php echo $Blog->ID; ?>") to each blog link element.
2) Then, using CSS, position each (relatively) to be in whatever order you want.
THis'll solve your problem, until such time that the capability is added. ;)
I did it my wy....
add in : .........../skins/_bloglist.php
before:
echo $blog_list_end;
// Mikels Hack for external links
include('more_links.php');
//End of hack
create a file more_links.php
add
echo'<a href="http://domain.dom/weblog/index.php" class="a:link" title="CuCue">CueCueBlog</a></li>';
echo ' ';
and so on....
uncheck: in blogs(blog settings)Include in public blog list
thats it.
Now bloglists shows, waht ever you want, even non blogs.... ;-)
9 stk Jul 11, 2006 20:07
Well, LOL, that's about as manual as automatic can get! If you're going to do that (and it's a damn fine solution) ... I'd just bail on the whole bloglist thing and manually put the links in your _main.php.
<!-- my blog links -->
<div class="myLinks">
<a class="home" href="http://mysite.com/blogs/index.php" title=" home ">Home Page</a>
<a class="blog1" href="http://mysite.com/blogs/index.php?blog=2" title=" blog1 ">Sofie's Blog</a>
etc ...
</div>
I would also like to know if this is possible.