RSS:
each WordPress install has by default all Feeds enabled,
Tech 9 is not interfering with it, read more about RSS at WP Codex.
Adding a link or a button through sidebar like this:
<a href=”<?php bloginfo('rss2_url'); ?>”><img src=”your img source” alt=”rss” ⁄><⁄a>
Adding a link in nav menu:
<li>
<a href=”<?php bloginfo('rss2_url'); ?>”>RSS><⁄a>
<⁄li>
inside the ul tags.
Slider
contact form 7 loads jquery again, that interferes with already loaded jquery,
try cforms and set js loading only on contact page through cform options, so js will be loaded only on contact page and not on every page like the bulky cform7.
Related slider:
Open header php, go to line 74 and remove this:
<?php if ( (is_single()) ) { ?>
<script type="text/javascript">
$(function() {
$(window).scroll(function(){
/* when reaching the element with id "last" we want to show the slidebox. Let's get the distance from the top to the element */
var distanceTop = $('#last').offset().top - $(window).height();
if ($(window).scrollTop() > distanceTop)
$('#slidebox').animate({'right':'0px'},300);
else
$('#slidebox').stop(true).animate({'right':'-430px'},100);
});
/* remove the slidebox when clicking the cross */
$('#slidebox .close').bind('click',function(){
$(this).parent().remove();
});
});
</script>
<?php } ?>