PDA

View Full Version : Prefix and Title In RSS


nando99
05-03-2009, 12:17 AM
I was wondering if theres a way to put an hyphen ( - ) between the prefix and thread title in RSS feeds?

http://feeds2.feedburner.com/FatBoyMagazine

for example:

World News Zombies are taking over London! Not Kidding!

would be

World News - Zombies are taking over London! Not Kidding!

it would be in the feed php file right? just don't know what to change...

thanks in advance

--------------- Added 1241322742 at 1241322742 ---------------

a good friend helped me out with this...

in external.php find

$thread['prefix_plain'] = ($thread['prefixid'] ? $vbphrase["prefix_$thread[prefixid]_title_plain"] . ' ' : '');

and replace it with:

$thread['prefix_plain'] = ($thread['prefixid'] ? $vbphrase["prefix_$thread[prefixid]_title_plain"] . ' - ' : '');

Lynne
05-03-2009, 02:53 AM
Just put a dash at the beginning of the Title Template for the feed?

nando99
05-03-2009, 03:00 AM
yeah... thats ^ what it did.. i think... either way it worked... thanks Lynne