Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Joomla! 1.5 Templates Cookbook

You're reading from   Joomla! 1.5 Templates Cookbook Over 60 simple but incredibly effective recipes for taking control of Joomla! templates

Arrow left icon
Product type Paperback
Published in Jul 2010
Publisher Packt
ISBN-13 9781849511247
Length 236 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Toc

Table of Contents (16) Chapters Close

Joomla! 1.5 Templates Cookbook
Credits
About the Author
About the Reviewers
1. Preface
1. Joomla! Theming Basics 2. Custom Joomla! Templates FREE CHAPTER 3. Theming the Details 4. Custom Page Templates 5. Styling Joomla! for Print 6. Joomla! Admin Templates 7. Social Media and Joomla! 8. Styling Joomla! for Mobiles 9. Joomla! and JavaScript 10. Miscellaneous Joomla! Templating Joomla! Output Overrides

Editing the HTML template in the administration panel


Joomla! allows administrators of their website to edit HTML templates of their Joomla! templates within the administration panel.

Getting ready

Log in to your website's administration panel and navigate to the Template Manager feature. From here, select the theme that is the current default. For this example, we'll assume it's the rhuk_milkyway template:

How to do it...

  1. 1. Select the Edit HTML option at the top-right of your screen. You'll be presented with a text box containing the contents of the template's index.php file:

  1. 2. Once you have finished editing the file, click on Save or Apply, or simply click on Cancel to preserve the template file as it was.

    Being able to edit a template's HTML from the administration panel is convenient for smaller tasks. For example, what if we wanted to remove the text at the bottom of the website that reads Powered by Joomla!?

  1. 3. Now locate the code that reads as follows:

    <p id="power_by">
    <?php echo JText::_('Powered by') ?>
    <a href="http://www.joomla.org">Joomla!</a>.
    <?php echo JText::_('Valid') ?>
    <a href="http://validator.w3.org/check/referer">XHTML</a>
    <?php echo JText::_('and') ?>
    <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS </a>.
    </p>
    
  2. By removing the highlighted lines of code in the previous code snippet, we can remove reference to the website being powered by Joomla!, if we wish to. Depending on the template you're editing, this process will almost certainly vary.

  3. 4. Once the Save or Apply button has been clicked, refresh the frontend of your website (that is, not the administration panel):

How it works...

When you edit the HTML of your template in Joomla!'s administration panel, Joomla! overwrites the index.php of your template with the changes that you've made. If you have downloaded your template for editing, you will need to download the index.php file again to prevent overwriting any changes.

See also

  • Editing CSS in the administration panel

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image