Recent Topics

1 May 20, 2012 10:47    

My b2evolution Version: 4.1.x

Hello,

How do I show all of the feedback comments on the main page of my blog? So that readers don't have to click '1 feedback' - but the feedback automatically appears under each blog post?

http://probioticforums.com

Many thanks

2 May 21, 2012 01:09

Add this to the top of _item_block.php file in your skin

$GLOBALS['c'] = 1;

3 May 21, 2012 09:44

Thanks - but would you mind showing me/linking to a site that will show me how to do so? I don't want to stuff it up!!! And I'm very much a noob.

Thanks

4 May 21, 2012 19:18

Open the file /skins/evopress/_item_block.php in text editor
You will see this at the top

if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

global $Item;


Add the code I posted

if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

global $Item;

$GLOBALS['c'] = 1;

5 May 22, 2012 06:31

Thanks. Much appreciated :D


Form is loading...