Recent Topics

1 Mar 02, 2009 23:50    

My b2evolution Version: 2.x

How can I arrange the blogs/pages alphabetically or in any order I want on the home page in the menu.

As example I would like to start with a simple introduction page, so no blog.

And I have several blogs added and would like to put those in an(y) specific order.

Thanks in advance,

Hans

2 Mar 06, 2009 17:24

The new version of b2evo will have a "feature" post feature.

FOr now, you can create a skin that creates an HTML widget on top of the "blog list".

You can also modify your current skin and add the code below and then add an html based widget that will contain your static content.

This is how we have arranged our home page. http://www.thechristianalert.org

<?php
		// ------------------------- "HTML Featured Post" CONTAINER EMBEDDED HERE --------------------------
		// Display container and contents:
		// Note: this container is designed to be a single <ul> list
		skin_container( NT_('HTML Featured Post'), array(
				// The following params will be used as defaults for widgets included in this container:
				'block_start' => '',
				'block_end' => '',
				'block_display_title' => true,
				'list_start' => '<ul>',
				'list_end' => '</ul>',
				'item_start' => '<li>',
				'item_end' => '</li>',
			) );
		// ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
	?>

3 Mar 06, 2009 17:58

Hi Sanchez,

will check If I can figure this out how to add to my pages and will get back to you :-)

Regards Hans


Form is loading...