I'm working on creating custom article parameters in Joomla 1.5 and was hacking the file /administrator/components/com_content/models/article.xml. Folks discourage hacking the core files of Joomla and now I'd like to follow good practices.

So how would I override the article.xml file so that my template has its own copy with custom parameters in the Advanced section of the file? Thanks :)

link|improve this question

From my research, there's no way to override the article.xml (see this post: theopensourcerer.com/2009/01/22/…). So it has to be done via hacking the core Joomla file. – Alex Nov 9 '10 at 16:47
feedback

2 Answers

up vote 2 down vote accepted

You can override just about anything that comes from the Joomla! Core. Check out this documentation on the Joomla site: http://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core

link|improve this answer
feedback

If it is like most of the other Open Source Software that I use that has that style of "templating", you should just be able to copy the file exactly as it is in the default template, to your new template and modify it there. Ex:

default/a/b/article.xml -> your_template/a/b/article.xml

I don't do too much Joomla, rather other open source PHP CMS and eComm systems, so I am not positive, but is easy enough to try though.

link|improve this answer
Please see my comment above. – Alex Nov 9 '10 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.