J1.5

Difference between revisions of "Add text to an article using template overrides"

From Joomla! Documentation

Line 21: Line 21:
 
[[Category:Tips and tricks 1.5]]
 
[[Category:Tips and tricks 1.5]]
 
[[Category:Article Management]]
 
[[Category:Article Management]]
[[Category:Template Development]]
+
[[Category:Templates]]

Revision as of 09:42, 17 September 2010

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Copyedit.png
This Page Needs Your Help

This page is tagged because it NEEDS REVIEW. You can help the Joomla! Documentation Wiki by contributing to it.
More pages that need help similar to this one are here. NOTE-If you feel the need is satistified, please remove this notice.


This tip tells you how to change Joomla! to automatically add text to an article. Say, for example, that you want to have some standard text ("This text has been added automatically by Joomla!.") added to the end of each article that is submitted from the front end. Here is how you can do this.

  1. Create a template override for the file <joomla_root>/components/com_content/views/article/tmpl/form.php
    • Create a folder called <joomla_root>/templates/<your template>/html/com_content/article. For example, for the "beez" template this folder is called <joomla_root>/templates/beez/html/com_content/article.
    • Copy the standard form.php file from the components folder above to the templates folder. Note: If you already have a form.php file in this folder, don't copy the file. Just edit it as indicated below.
  2. Edit the copy of the file you made in the override folder as follows. Find the line
       var text = <?php echo $this->editor->getContent( 'text' ); ?>
    This is line 49 in the 1.5.8 version of this file. Change this to the following:
  
   var text = <?php 
	$addToText = '<p>Joomla! automatically added this text.</p>'; 
	if (strpos($this->article->text, $addToText) == 0) {
           $this->article->text .= $addToText;
	}
   echo $this->editor->getContent( 'text' ); ?>

This is checking that the text to be added is not already in the article. If it is not, then it is added to the article. Obviously, you would change the text in the variable $addToText to whatever you need.

That's it. Now, when you edit an article from the front end, this text will automatically be added. Note that this change does not affect editing from the back end. Also, since this is done as a template override, it only affects pages that use the overridden template.

For more information on template overrides, see the tip How to override the output from the Joomla! core.