Recent Topics

1 Jul 16, 2008 16:29    

My b2evolution Version: 2.4.2

I have a pre-made layout that I would like to use as a skin for my blog and I've been following the instructions on the "Create a new skin" tutorial from the b2evolution docs. Everything works fine by Head/Step 6, however, once I add the code from Step 8, my images disappear and the title bar of my window says:

Warning: array_merge() [function.array-merge]: ...

I moved on to Main Content Area/Step 1 and added the given code, but everything disappears and I get this nasty warning:

Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home1/jthrmmne/public_html/inc/_core/_template.funcs.php on line 190


Fatal error: Call to undefined function posts_nav_link() in /home1/jthrmmne/public_html/skins/simple/index.main.php

Here is the link to my site (You'll need to highlight the text to see it):

http://j3mm.net/

and here is what my layout should look like:

http://j3mm.net/layout/

2 Jul 16, 2008 17:58

Hi j3mm

Replace the function in your index.main.php on line 118 with this one

// ------------------- PREV/NEXT POST LINKS (SINGLE POST MODE) -------------------
item_prevnext_links( array(
		'block_start' => '<table class="prevnext_post"><tr>',
		'prev_start'  => '<td>',
		'prev_end'    => '</td>',
		'next_start'  => '<td class="right">',
		'next_end'    => '</td>',
		'block_end'   => '</tr></table>',
	) );
// ------------------------- END OF PREV/NEXT POST LINKS -------------------------


Form is loading...