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.

Archive /

Our old forums are still available as a read-only archive.

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

$Content without first.paragraph


Go to End


3 Posts   6580 Views

Avatar
snaip

Community Member, 181 Posts

9 December 2008 at 1:25am

Edited: 09/12/2008 1:26am

How to display text without first paragraph ?

Avatar
SalvaStripe

Community Member, 89 Posts

9 December 2008 at 2:04am

Hmm.. you want to show your $Content without First Paragraph?

This is for showing only First Paragraph: $Content.FirstParagraph
This is for showing for example the first 25 Word: $Content.LimitWordCount(25)

Showing $Content without First Paragraph you can do 2 Methods...
First Method is to create a new "PageType".. maybe called "ArticlePage"

Then add the First Paragraph Text into the ArticlePage.ss before the $Content tag. When you use now $Content oder $Content.FirstParagraph in your ArticleHolder.. what uses <% control children %> or thing like this.. you will get the Content without the first Paragraph!!!

The second method is well coded. You must create again a new PageType. In the php-File of this new PageType you can add a new field like $Content2 oder $FP (first paragraph)..
so you have 2 different TextAreas in your CMS.. this way is easier to handle with your content, but little more to write in your php file.

if you dont know how to add a second Content field for your PageType and how to use it, write here and i'll answer!

SS

Avatar
UncleCheese

Forum Moderator, 4102 Posts

9 December 2008 at 3:40am

function AllButFirstParagraph() {
return str_replace($this->obj('Content')->FirstParagraph(), '', $this->Content);
}