Recent Topics

1 Jun 11, 2013 00:56    

I don't know if this is a bug or i'm doing something wrong, I tried first in my local installation and then in b2evo demo. In Blog settings > SEO settings > Main page / post list > Post contents: (http://demo3.b2evolution.net/stable/admin.php?ctrl=coll_settings&tab=seo&blog=1) I checked "Post excerpts" as post contents, because that's what I want to display in the home page.

Then when I go to the main page (http://demo3.b2evolution.net/stable/blog1.php) the list of post shows only excerpts, but if I try to see the rest of the post using "more »", the post page (http://demo3.b2evolution.net/stable/blog1.php/welcome-to-b2evolution) displays only the excerpt, not the hole post...

2 Jun 11, 2013 02:35

We'll fix that promptly. Thank you for reporting.

3 Jun 11, 2013 08:21

To quick fix you can add the following code after line 125 of the file "/skins/_item_content.inc.php":


case 'single':
	$content_mode = 'full';
	break;

It will be fixed in the next release.

4 Jun 11, 2013 19:35

I added case 'page': after case 'single':, because pages have the same problem, now it works all right.

5 Jun 12, 2013 06:51

@fede wrote earlier:

I added case 'page': after case 'single':, because pages have the same problem, now it works all right.

Yes you are right, we should use:


case 'single':
case 'page':
	$content_mode = 'full';
	break;

Thank you.


Form is loading...