Recent Topics

1 Mar 13, 2006 06:56    

I've been searching the forums, but i couldn't find an answer to this...

I want to change my bloglist from [blog1][blog2][blog3]
to [blog1][blog3][blog2].

is there any way to do this and change the order?

2 Jun 24, 2006 05:20

I would also like to know if this is possible.

3 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 Jun 30, 2006 09:14

No chance of getting added? I mean, its an important feature if not "very important". ;)

5 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 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 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 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 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>


Form is loading...