diff --git plugins/views_plugin_style_rss.inc plugins/views_plugin_style_rss.inc
index eb2a22a..899d244 100644
--- plugins/views_plugin_style_rss.inc
+++ plugins/views_plugin_style_rss.inc
@@ -20,7 +20,7 @@ class views_plugin_style_rss extends views_plugin_style {
     }
 
     $url = url($this->view->get_url(NULL, $path), $url_options);
-    if ($display->has_path()) {
+    if ($display->has_path() && empty($this->options['feed_in_links'])) {
       if (empty($this->preview)) {
         drupal_add_feed($url, $title);
       }
@@ -45,6 +45,7 @@ class views_plugin_style_rss extends views_plugin_style {
 
     $options['description'] = array('default' => '', 'translatable' => TRUE);
     $options['mission_description'] = array('default' => '', 'translatable' => TRUE);
+    $options['feed_in_links'] = array('default' => FALSE);
 
     return $options;
   }
@@ -63,6 +64,11 @@ class views_plugin_style_rss extends views_plugin_style {
       '#process' => array('views_process_dependency'),
       '#dependency' => array('edit-style-options-override' => array(FALSE)),
     );
+    $form['feed_in_links'] = array(
+      '#type' => 'checkbox',
+      '#default_value' => !empty($this->options['feed_in_links']),
+      '#title' => t('Display the feed icon in the links attached to the view.'),
+    );
   }
 
   /**
