Change Title of Podcast
by
25 Dec 2012
Rating: (1 vote
- 4.00 average)
vBulletin has a great built-in podcast system, but it is unfortunately LACKING one very basic feature: You can't name your podcasts! When vBulletin generates an RSS Feed for iTunes and other podcasting services, it automatically assigns a name to your podcast. That name is always a concatenation of the name of your forums and the individual forum name where they appear. For example, if your forums were called "Baseball Discussion Forums" and the podcast forum was called "Our Podcasts", all of your podcasts would be listed as "Baseball Discussion Forums - Our Podcasts" on iTunes, which is cumbersome-looking and unprofessional. If you wanted the Podcast to simply be called "The National League Report", you couldn't do it. This modification allows you to name your podcasts whatever you want. It requires one simple database change and two small modifications to source code. Database Change 1)Locate the podcast database entry. 2) Add a column to the end of the entry called "podcastname" (without the quotes). Make it identical to the "author" entry, in terms of format. This is, make it of type VARCHAR length 255, with latin1_swedish_ci collation. This database change is mandatory! This modification will crash without it. However, it is backwards compatible with your other podcasts, so the database change itself will not harm anything, even if you back out this modification at some point. Source Changes You will be modifying two source files. One is external.php in your main forum directory. One is forum.php in the admincp subdirectory of your forum. Changes for external.php are as follows: Locate this block: Code:
if (empty($title)) { // just show board title $rsstitle = $vbulletin->options['bbtitle']; } else { // show board title plus selection $rsstitle = $vbulletin->options['bbtitle'] . " - $title"; } Code:
if ($podcastinfo['podcastname']) { $rsstitle = $podcastinfo['podcastname']; } else { Code:
} Here are the changes to make for forum.php in the admincp directory: Locate the following code: Code:
print_podcast_chooser($vbphrase['category'], 'categoryid', $podcast['categoryid']); Code:
print_input_row('Podcast Name' . '<dfn>' . construct_phrase($vbphrase['maximum_chars_x'], 255) . '</dfn>', 'podcastname', $podcast['podcastname']); Next, locate the following code: Code:
$vbulletin->input->clean_array_gpc('p', array( 'categoryid' => TYPE_UINT, 'explicit' => TYPE_BOOL, 'enabled' => TYPE_BOOL, Code:
'podcastname' => TYPE_STR, Next, locate the following code: Code:
$db->query_write(" REPLACE INTO " . TABLE_PREFIX . "podcast (forumid, enabled, categoryid, category, author, image, explicit, keywords, owneremail, ownername, subtitle, summary) VALUES ( $forum[forumid], " . intval($vbulletin->GPC['enabled']) . ", " . $vbulletin->GPC['categoryid'] . ", '" . $db->escape_string(serialize($category)) . "', Code:
$db->query_write(" REPLACE INTO " . TABLE_PREFIX . "podcast (forumid, enabled, categoryid, category, podcastname, author, image, explicit, keywords, owneremail, ownername, subtitle, summary) VALUES ( $forum[forumid], " . intval($vbulletin->GPC['enabled']) . ", " . $vbulletin->GPC['categoryid'] . ", '" . $db->escape_string(serialize($category)) . "', '" . $db->escape_string($vbulletin->GPC['podcastname']) . "', Now you will have a new field to enter your podcast name in the Podcast Settings admin screen. The new field is circled in the attachment below: Make sure you go to your existing podcasts and add a name to them! |