Danke hab es erstmal so gelöst, mir war es aber so als ob ich das in Backend irgendwo einstellen konnte.
OK für den Artikel habe ich es so gemacht
Code:
<div class="PostHeaderIcons metadata-icons">
<?php if (($this->params->get('show_author')) && ($this->article->author != "")) : ?>
<?php ob_start(); ?><?php echo JHTML::_('image.site', 'PostAuthorIcon.png', null, null, null, JText::_("PostAuthorIcon"), array('width' => '18', 'height' => '18')); ?> <?php JText::printf('Geschrieben von %s', ($this->article->created_by_alias ? $this->article->created_by_alias : $this->article->author) ); ?>
<?php $metadata[] = ob_get_clean(); ?>
<?php endif; ?>
<?php if ($this->params->get('show_create_date')) : ?>
<?php ob_start(); ?><?php echo JHTML::_('image.site', 'PostDateIcon.png', null, null, null, JText::_("PostDateIcon"), array('width' => '18', 'height' => '18')); ?> <?php echo JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC2')); ?>
<?php $metadata[] = ob_get_clean(); ?>
<?php endif; ?><?php
if ($this->params->get('show_url') && $this->article->urls)
$metadata[] = '<a href="http://' . $this->item->urls . '" target="_blank">' . $this->item->urls . '</a>';
if (!$this->print) {
$joomlaIcons = array();
if ($this->params->get('show_pdf_icon'))
$joomlaIcons[] = JHTML::_('icon.pdf', $this->article, $this->params, $this->access);
if ( $this->params->get( 'show_print_icon' ))
$joomlaIcons[] = JHTML::_('icon.print_popup', $this->article, $this->params, $this->access);
if ($this->params->get('show_email_icon'))
$joomlaIcons[] = JHTML::_('icon.email', $this->article, $this->params, $this->access);
if ($joomlaIcons != '')
$metadata[] = '<span class="metadata-icons">' . implode(' ', $joomlaIcons) . '</span>';
if ($canEdit)
$metadata[] = JHTML::_('icon.edit', $this->article, $this->params, $this->access);
} else {
$metadata[] = JHTML::_('icon.print_screen', $this->article, $this->params, $this->access, array('class' => 'metadata-icon'));
}
echo implode(' ', $metadata);
?>
Und für den Blog im blog_item.php genauso
Lesezeichen