Print Version Adapt
- janrichter
- Offline Topic Author
- Fresh Boarder
- Posts: 2
- Thank you received: 0
Other point: When trying Phoca PDF, the button doesn't appear, I changed the layouts/joomla/content/icons.php. But nothing changed. Does the template override the article output?
The website is www.globotur-incoming.de
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
1.) You can add your own print.css file into the component.php like this:
$doc->addStyleSheet($this->baseurl . '/templates/' . $this->template . '/css/print.css', $type = 'text/css', $media = 'print');
Attachment print-2.jpg not found
2.) The template have no icons for print. This depends on warp framework. But you can create an override:
yootheme.com/themes/documentation/developers/customization
To customize the general theme layout, you need to override the /layouts/theme.php. To do so, create the /styles/STYLE-NAME/layouts directory, copy the file in there and start adding your own PHP code.
This way you can also override system files. For example, just take the Joomla article layout /warp/systems/joomla/layouts/com_content/article/default.php and copy it to your style folder /styles/STYLE-NAME/layouts/com_content/article/default.php and modify it. Now your modified article layout file will be used instead of the default system layout. The same applies for WordPress files
www.joomlaplates.de/dokumentation.html
Attachments:
Please Log in or Create an account to join the conversation.