To disable the link to details page do the following:
1. go to \components\com_rsmembership\views\rsmembership\tmpl\default.php. Here around line 42 you will find the code line:
<h2 class="rsm_title contentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"><?php if ($this->params->get('show_category', 0)) { ?><?php echo $item->category_id ? $item->category_name : JText::_('RSM_NO_CATEGORY'); ?> - <?php } ?><a href="<?php echo $link; ?>"><?php echo $item->name; ?></a> - <?php echo $price; ?></h2>
which you will have to change to:
<h2 class="rsm_title contentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"><?php if ($this->params->get('show_category', 0)) { ?><?php echo $item->category_id ? $item->category_name : JText::_('RSM_NO_CATEGORY'); ?> - <?php } ?><?php echo $item->name; ?> - <?php echo $price; ?></h2>
This will eliminate the link to details page
Hope this helps