简体   繁体   中英

Override Joomla Component Template

I am using this URL to access the raw HTML of a component:

/index.php?option=com_downloadform&tmpl=component

However it also returns the document type, title tags, head tags etc.

Is there a way to return only the content between <body> and </body> ?

Thanks,

Ian

Inside your template folder, create a file (eg raw.php) and inside that file place only:

<jdoc:include type="component" />

Then, you can use /index.php?option=com_downloadform&tmpl=raw to access the raw output of the component. The tmpl parameter in your link must be the name of the file without the extension.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM