Hello,
I can’t access your admin site by the link with token you provided me before. I also connected to your FTP but I wasn’t be able to find the source code of your website.
I made some change in the code and the rss feed worked well on my local site. Please try it on your site.
So please open “componentscom_javoicehelpersjahelper.php” file, find the line “function show_powered_by($isWritten){“, you will see the following code:
function show_powered_by(){
global $javconfig;
if(!$javconfig['systems']->get('is_turn_off_copyright', 0) && (!isset($javconfig['license']) || $javconfig['license']->get('type')!='Professional')){
echo 'Powered by <a href="http://javoice.joomlart.com">JA Voice</a>.';
}
}
function get_powered_by(){
return JAPermissions::show_powered_by();
}
Replace it by this code:
function show_powered_by($isWritten){
global $javconfig;
if(!$javconfig['systems']->get('is_turn_off_copyright', 0) && (!isset($javconfig['license']) || $javconfig['license']->get('type')!='Professional')){
if ($isWritten)
echo 'Powered by <a href="http://javoice.joomlart.com">JA Voice</a>.';
else
return 'Powered by <a href="http://javoice.joomlart.com">JA Voice</a>.';
}
}
function get_powered_by(){
return JAPermissions::show_powered_by(0);
}
Please try it and confirm me if your problem is resolved.
Thank you.