I am using Free portfolio extension by Portfolio Design---[http://www.portfoliodesign.org/] But on the footer there is a link that i can't remove. Here is my site http://cybervillagebd.com/index.php?option=com_portfolio&view=all&Itemid=9 Would you plz help me to remove this link?
have you tried to contact the maker of the extension and ask them? Most likely it is required to have the link since it is a free extension.
look for a hidden php file disguised as a css file or something similar, some people are starting to base64 encode links. If you find it remove the big long string of nonsense that stats with base64eval
Salayhin I noticed you found out how to remove the links, could you please share where they are located? Specifically the ones in the component module.
Hello All, Go the link \administrator\com_portfolio\helpers open the helper.php There Have: function acl() { $psettings = & Portfoliohelper::config(); if (file_exists(JPATH_SITE . '/plugins/component/portfolio_component_license.php')) { $info = ''; } else { $info = $psettings->info; } return $info; } =============================== Just Comment it=============== as like:- function acl() { //$psettings = & Portfoliohelper::config(); // // if (file_exists(JPATH_SITE . '/plugins/component/portfolio_component_license.php')) { // $info = ''; // } else { // $info = $psettings->info; // } // // return $info; }