Sorry my fault, the files you need to modify are
1) edit.php - copy this code to use it in step two then comment or remove it from edit.php
// captcha addition
if(VmConfig::get ('reg_captcha')){
JHTML::_('behavior.framework');
JPluginHelper::importPlugin('captcha');
$dispatcher = JDispatcher::getInstance(); $dispatcher->trigger('onInit','dynamic_recaptcha_1');
?>
<div id="dynamic_recaptcha_1"></div>
<?php
}
// end of captcha addition
2) edit_shopper.php - i assume from your link that the buttons are already in the correct place so you need to add the above code just after this
if ($this->userDetails->JUser->get('id') ) {
echo $this->loadTemplate('address_addshipto');
}
These changes will work if the template is using the standard vm3 view files but because it wont be easy to do the changes if you are not familiar with php and maybe you dont properly close the php tags i have attached the modified files.
Please first backup the original files before make any changes or replace them with the attached.