Quote Originally Posted by elishama3 View Post
1) The instructions say the following, but the file in step 4. does not have any head tags to put the line between, and 5. seems to be optional but I do not understand what to do with 6.
4. You can add to html_header.php somewhere beetwen <head> and </head> tags:
<?php echo rss_feed_link_alternate(); // RSS Feed ?>
elishama3, in includes/templates/your_template/common/html_header.php, you should have the <head> tags you are looking for. At the very bottom of that page you should see these two lines:

</head>
<?php // NOTE: Blank line following is intended: ?>

add the code just above the</head> tag, like this:

<?php echo rss_feed_link_alternate(); // RSS Feed ?>
</head>
<?php // NOTE: Blank line following is intended: ?>