Hi,
I gave you this line of code previously:
<?php echo str_replace('target="_blank" class="', 'target="_blank" class="btn btn-info', $this->fieldsClass->show($oneExtraField,$value)); ?>
which you changed accordingly. As you can see, the change consists on calling the "str_replace" function there to replace target="_blank" class=" by target="_blank" class="btn btn-info
If you want to have a generic text in that link, you can do it like that:
<?php echo preg_replace('#><\/a>#','>XXX</a>',str_replace('target="_blank" class="', 'target="_blank" class="btn btn-info', $this->fieldsClass->show($oneExtraField,$value))); ?>
where XXX is the text you want to have in the a tag.