Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Blog Module /

Discuss the Blog Module.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

blog entries in the blog handler


Go to End


3 Posts   2104 Views

Avatar
animasola

Community Member, 121 Posts

21 May 2009 at 5:42pm

Hi,

I just installed the blog module for ss and I tried posting some new entries. As we all know, the latest posts' gist are shown in the handler. Now, I find the gists too short and I want to make them longer, by gist I mean the posts shown in the handler where there is a read more button at the end. Anyone know how I will be able to do this? And another thing, I also wish to know how to control the number of displayed posts in the handler.

Any piece of advice would be greatly appreciated, thanks! :)

Avatar
animasola

Community Member, 121 Posts

25 May 2009 at 10:42pm

bump.

anyone? please?

Avatar
Ultimate

Community Member, 18 Posts

30 July 2009 at 6:23am

1. Show the full post in the BlogHolder edit BlogSummary.ss

(...)

<% if IsWYSIWYGEnabled %>
	$Content
<% else %>
	$ParsedContent
<% end_if %>

(...)

2. You can limit the posts shown per page in BlogHolder.php

(...)
function BlogEntries($limit = 10) {

(...)