How to remove Powered By Phoca Gallery in Joomla 2.5 Brad MarkleUpdated on February 21, 2022 3 Minute Read Joomla 2.5 has reached its end of life as for 12/31/2014. Please be advised this may be a security risk to your website. You can view more information about the end of life here. On all Phoca Gallery pages in Joomla 2.5 is a link that reads, Powered By Phoca Gallery. When using free and open source software, it’s general courtesy to link back to the people who have built the software you’re using. There may be times however that you want to remove those links added by the developers. In this tutorial, we’ll walk you through the steps for removing the Powered By Phoca Gallery links in your Joomla 2.5 photo gallery. How to delete Powered By Phoca Gallery in Joomla 2.5: Open for edit this file: administrator/components/com_phocagallery/libraries/phocagallery/render/renderfront.phpAround line 680, you should see the following: function renderInfo() { return '<div style="text-align: center; color: rgb(211, 211, 211);">Powe' . 'red by <a href="https://www.ph' . 'oca.cz" style="text-decoration: none;" target="_blank" title="Phoc' . 'a.cz">Phoca</a> <a href="https://www.phoca.cz/phocaga' . 'llery" style="text-decoration: none;" target="_blank" title="Phoca Gal' . 'lery">Gall' . 'ery</a></div>'; } Replace the above code with the following: function renderInfo() { return; return '<div style="text-align: center; color: rgb(211, 211, 211);">Powe' . 'red by <a href="https://www.ph' . 'oca.cz" style="text-decoration: none;" target="_blank" title="Phoc' . 'a.cz">Phoca</a> <a href="https://www.phoca.cz/phocaga' . 'llery" style="text-decoration: none;" target="_blank" title="Phoca Gal' . 'lery">Gall' . 'ery</a></div>'; } There is another file you need to edit: components/com_phocagallery/views/category/view.html.php Around line 663, find the following code: $this->tmpl['mac'] = '<div style="text-align: center; color: rgb(211, 211, 211);">Powe'. 'red by <a href="https://www.ph'. 'oca.cz" style="text-decoration: none;" target="_blank" title="Phoc'. 'a.cz">Phoca</a> <a href="https://www.phoca.cz/phocaga'. 'llery" style="text-decoration: none;" target="_blank" title="Phoca Gal'. 'lery">Gall'. 'ery</a></div>'; Replace the above code with the following: $this->tmpl['mac'] = ''; // $this->tmpl['mac'] = '<div style="text-align: center; color: rgb(211, 211, 211);">Powe'. 'red by <a href="https://www.ph'. 'oca.cz" style="text-decoration: none;" target="_blank" title="Phoc'. 'a.cz">Phoca</a> <a href="https://www.phoca.cz/phocaga'. 'llery" style="text-decoration: none;" target="_blank" title="Phoca Gal'. 'lery">Gall'. 'ery</a></div>'; One more file to edit is: administrator/components/com_phocagallery/libraries/phocagallery/utils/utils.php Around line 118, find the following code: echo '<div style="text-align: center; color: rgb(211, 211, 211);">Powe'.'red by <a href="https://www.ph' .'oca.cz" style="text-decoration: none;" target="_blank" title="Phoc'.'a.cz">Phoca</a> <a href="https://www.phoca.cz/phocaga'.'llery" style="text-decoration: none;" target="_blank" title="Phoca Gal' .'lery">Gall'.'ery</a></div>'; Replace the above code with the following: // echo '<div style="text-align: center; color: rgb(211, 211, 211);">Powe'.'red by <a href="https://www.ph' .'oca.cz" style="text-decoration: none;" target="_blank" title="Phoc'.'a.cz">Phoca</a> <a href="https://www.phoca.cz/phocaga'.'llery" style="text-decoration: none;" target="_blank" title="Phoca Gal' .'lery">Gall'.'ery</a></div>'; Share this Article Related Articles Prevent New Account activation email sent to Joomla 2.5 Administrator Joomla 3.1 Error – Could not instantiate mail function How to Create a Slideshow (Carousel) in Joomla 4.0 using Bootstrap How to write a blog post in Joomla 3.1 How to Use the Free Mini Frontpage Extension for Joomla 4.0 How to Change a Joomla 2.5 User’s Email Address How to Configure Joomla 2.5 to Send Email Using SMTP How to Edit a Joomla 3 Template How to install Phoca Gallery for Joomla 2.5 Creating a Menu Item for your Joomla 3 Component