If there is not a parameter within the JA Tabs Module configurations for displaying/not displaying the “read more” link, then try opening up the ja-tabs.php file and see if you can find the following
if($params['useAjax']=='false'){
if(!isset($params['view']) || $params['view']!='fulltext' || $row->fulltext ==''){
$divs .= $row->introtext;
$link = JRoute::_(ContentHelperRoute::getArticleRoute($row->id, $row->catid, $row->sectionid));
$divs .= '<a href="'.$link .'" class="readon" title="'.JText::sprintf('Read more...').'">'.JText::sprintf('Read more...').'</a>';
}
else{
$divs .= $row->introtext.$row->fulltext;
}
[FONT=arial]and change it so it looks like this . . .
[/FONT]
if($params['useAjax']=='false'){
if(!isset($params['view']) || $params['view']!='fulltext' || $row->fulltext ==''){
$divs .= $row->introtext;
}
else{
$divs .= $row->introtext.$row->fulltext;
}
}
MAKE SURE YOU MAKE A BACK UP OF YOUR FILE BEFORE YOU CHANGE THINGS – so you can revert back if need be.
Let me know if this works for you.