RSS Modification?
Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums Modifications
Forum Description: Mod's and Add-on's for Web Wiz Forums.
URL: https://forums.webwiz.net/forum_posts.asp?TID=24822
Printed Date: 30 March 2026 at 4:18am Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com
Topic: RSS Modification?
Posted By: Tammi
Subject: RSS Modification?
Date Posted: 14 November 2007 at 4:55am
I've been trying to arrange the information sent via the RSS Feed, and have run across two problems:
Calendar Feed: Is there a way to have "Subject:" not display at all? If I attempt to remove what appears to be the relevant code, I get an error from my browser when I refresh...
Forum Feed: Currently, RSS feeds of a forum begins each entry with "[Forum Name] : [Topic Name]". I'd like to remove "[Forum Name] : " and leave the "[Topic Name]" intact. Again, I seem to be unable to do this without getting an error from my browser when I refresh...
Help! :(
|
Replies:
Posted By: Tammi
Date Posted: 14 November 2007 at 11:32pm
In case anyone else has the same question in the future, I think I found a couple of possible solutions:
Calender Feed Solution: Open "RSS_calendar_feed.asp". Modify the following code (between lines 326-331):
'Format the post to be sent with the e-mail strEventRSSOutput = "<div style=""display:none;""><strong>" & strTxtSubject & "</strong>:</div><b>" & sarryRssTopics(2, intCurrentRecord) & "</b>" & _ "<br /><div style=""display:none;""><strong>" & strTxtEventDate & ":</strong></div>" & stdDateFormat(dtmEventDate, False) If isDate(dtmEventDateEnd) Then strEventRSSOutput = strEventRSSOutput & " - " & stdDateFormat(dtmEventDateEnd, False) strEventRSSOutput = strEventRSSOutput & _ "" |
Forum Feed Solution: Open "RSS_topic_feed.asp".
Remove the following code (around line 345):
<% = Server.HTMLEncode(strForumName) %> : |
|
|