Hi,
You will find it from components/com_javoice/helpers/jahelper.php file and change
find and change
public static function show_powered_by(){
global $javconfig;
$html = '';
if(!$javconfig['systems']->get('is_turn_off_copyright', 0) && (!isset($javconfig['license']) || $javconfig['license']->get('type')!='Professional')){
if(JRequest::getCmd("view") != "feeds"){
$html .= 'Powered by <a href="http://javoice.joomlart.com">JA Voice</a>.';
}
}
return $html;
}
to
public static function show_powered_by(){
global $javconfig;
$html = '';
if(!$javconfig['systems']->get('is_turn_off_copyright', 0) && (!isset($javconfig['license']) || $javconfig['license']->get('type')!='Professional')){
if(JRequest::getCmd("view") != "feeds"){
$html .= '';
}
}
return $html;
}
Hope it helps
Regards