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.

Widgets /

Discuss SilverStripe Widgets.

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

Remove Title SubscribeRSSWidget


Go to End


3 Posts   2351 Views

Avatar
Zalz

Community Member, 3 Posts

12 March 2010 at 2:21am

Hello Folks, I like to remove the title from the SubscribeRSSWidget. I have copied the WidgetHolder.ss file to themes/yourtheme/templates folder and add in the changed html.

 <div class="WidgetHolder">
<% if Title = SubscribeRSSWidget %>
<% else %>
<h3>$Title</h3>
<% end_if %>
$Content
</div>

but with no success. Can somebody help!!

Cheers, Jeroen

Avatar
Willr

Forum Moderator, 5523 Posts

12 March 2010 at 3:37pm

<% if Title = SubscribeRSSWidget %> 

Perhaps you want to try ClassName = SubscribeRSSWidget rather than title.

Avatar
Zalz

Community Member, 3 Posts

12 March 2010 at 8:22pm

Thanks Willr, that have done the JOB!!