Figured out a couple of nukeSEO addons for a pretty cool module by nukecoder - Nuke Docs v1 beta for RavenNuke™
Only registered users can see links on this board! Get registered or login!
For the
Only registered users can see links on this board! Get registered or login!. This will add the
Nuke Docs v1 beta for RavenNuke™ to the sitemap. Just upload the php file as
modules/Sitemap/content/Docs.php
Only registered users can see links on this board! Get registered or login!
Don't forget! If you use shortlinks you'll have to add to your GT-Sitemap and GT-SitemapGoogle
and...
For nukeFEED....
You can setup feeds of most popular / recent from:
The Module Level to select from all docs
or
The Category Level for most popular / recent from a specific doc.
Just add Docs.php from archive below to
includes/nukeSEO/content/ and setup in the
nukeFEED ACP as you would any other feed....
http://www.rtsforce.com/files/nukeFEED-Docs.zip
Don't forget! If you use shortlinks you'll have to add to your GT-Feeds.php
and
For those that use montego's dynamic titles I figured out something that works for that... add to
includes/dynamic_titles.php
Code:
/*
* docs
*/
elseif ($name == 'Docs') {
global $do, $id;
if ($do == 'show_doc') {
$sql = 'SELECT title, subtitle FROM ' . $prefix . '_docs WHERE id=\'' . intval($id) . '\'';
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$newpagetitle = $row['title'] . $dt_sDelim . $row['subtitle'] . $dt_sDelim . $sitename;
}
}
|