New Page
Step 1: Upload the files
Upload all the files to your root following the zip structure
Step 2: Edit files
Open htaccess and add (Please backup any file that you will edit)
# **** RSS FEEDS****
RewriteRule ^rss(/?|)$ index.php?link1=rss [QSA]
Open index.php located at the root and Look for (Around line 867) <= This place is very important, must be around this line
else {
switch ($page) {
after that add
case'rss';
include('sources/rss/content.php');
break;
If you want to add this profile block so every user can share their personal profile feed
Open Themes/YourTheme/layout/timeline/content.phtml
look for
echo Wo_LoadPage('timeline/custom-fields');
}
}
?>
</div>
<?php } ?>
and after that add
<?php echo Wo_LoadPage('rss/profileblock');?>
If you want add the buttons to the blogs like this
Look for
<?php echo $wo['lang']['most_recent_art']; ?>
after that add
<?php echo Wo_LoadPage('rss/iblogs-button'); ?>