Hi,
You have to replace the code:
$empty='';
jimport('joomla.html.parameter');
$params = new HikaParameter($empty);
echo $this->cart->displayButton(JText::_('ADD_ME_WAITLIST'),'add_waitlist',$params,hikashop_completeLink('product&task=waitlist&cid='.$this->row->product_id.$url_itemid),'window.location=\''.str_replace("'","\'",hikashop_completeLink('product&task=waitlist&cid='.$this->row->product_id.$url_itemid)).'\';return false;');
By a custom button redirecting to the RSForm, something like:
echo '<input type="button" onclick="window.location.href=\'YOUR_RSFORM_URL?id='.$this->row->product_id.'\'"';