End of Support for Joomla 3 - Forum closed
JP Power: Blog-Titel unter Bild und nicht h1
JP Power: Blog-Titel unter Bild und nicht h1 was created by sercosys
Posted 6 years 9 months ago #21132
Hallo,
wie bekomme ich es hin, dass die Überschrift eines Blog-Beitrag UNTER dem Bild erscheint und nicht h1 (sondern h2) ist?
Danke!
LG
wie bekomme ich es hin, dass die Überschrift eines Blog-Beitrag UNTER dem Bild erscheint und nicht h1 (sondern h2) ist?
Danke!
LG
by sercosys
Please Log in or Create an account to join the conversation.
- joomlaplates
-
Offline
- Moderator
-
- Posts: 8841
- Thank you received: 1736
Replied by joomlaplates on topic JP Power: Blog-Titel unter Bild und nicht h1
Posted 6 years 9 months ago #21136
Hallo, dafür müssten sie ein layout override erstellen.
Hier eine Anleitung:
yootheme.com/support/warp/joomla/customization
Hier eine Anleitung:
yootheme.com/support/warp/joomla/customization
Attachment Screenshot_2-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-27-28-29-30-31-32-33-34-35-36-37-38-39-40-41-42-43.jpg not found
Dokumentation:
www.joomlaplates.de/dokumentation.html
www.joomlaplates.de/dokumentation.html
by joomlaplates
Attachments:
Please Log in or Create an account to join the conversation.
Replied by sercosys on topic JP Power: Blog-Titel unter Bild und nicht h1
Posted 6 years 9 months ago #21153
Danke. Das hab ich schon mal geschafft - ich hab ne "eigene" default.php
Da ich aber kein Programmierer bin, weiß ich jetzt nicht, was ich da machen muß um die Überschrift unter das Bild zu bekommen und aus h1 eine h2 zu machen...?
Da ich aber kein Programmierer bin, weiß ich jetzt nicht, was ich da machen muß um die Überschrift unter das Bild zu bekommen und aus h1 eine h2 zu machen...?
Code:
<?php
/**
* @package Warp Theme Framework
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
// no direct access
defined('_JEXEC') or die;
// Create a shortcut for params.
$item = $this->item;
$params = $item->params;
$urls = json_decode($item->urls);
$canEdit = $params->get('access-edit');
$user = JFactory::getUser();
$args = include(__DIR__.'/../article_defaults.php');
// get view
$menu = JFactory::getApplication()->getMenu()->getActive();
$view = is_object($menu) && isset($menu->query['view']) ? $menu->query['view'] : null;
if ($view == 'article') $args['permalink'] = '';
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
if ($this->params->get('show_page_heading')) {
echo '<h1>'.$this->escape($this->params->get('page_heading')).'</h1>';
}
// set author_url
if (!empty($this->item->contactid) && $params->get('link_author') == true) {
$needle = 'index.php?option=com_contact&view=contact&id=' . $this->item->contactid;
$menu = JFactory::getApplication()->getMenu();
$item = $menu->getItems('link', $needle, true);
$args['author_url'] = !empty($item) ? $needle . '&Itemid=' . $item->id : $needle;
}
// set article
$article = "";
if ($params->get('access-view')) {
if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='0')) OR ($params->get('urls_position')=='0' AND empty($urls->urls_position) ))
OR (empty($urls->urls_position) AND (!$params->get('urls_position')))) {
$article .= $this->loadTemplate('links');
}
$article .= $this->item->text;
if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='1')) OR ( $params->get('urls_position')=='1') )) {
$article .= $this->loadTemplate('links');
}
// optional teaser intro text for guests
} elseif ($params->get('show_noauth') == true AND $user->get('guest')) {
$article .= $this->item->introtext;
// optional link to let them register to see the whole article.
if ($params->get('show_readmore') && $this->item->fulltext != null) {
$link1 = JRoute::_('index.php?option=com_users&view=login');
$link = new JURI($link1);
$article .= '<p class="links">';
$article .= '<a href="'.$link.'">';
$attribs = json_decode($this->item->attribs);
if ($attribs->alternative_readmore == null) {
$article .= JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
} elseif ($readmore = $this->item->alternative_readmore) {
$article .= $readmore;
if ($params->get('show_readmore_title', 0) != 0) {
$article .= JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
}
} elseif ($params->get('show_readmore_title', 0) == 0) {
$article .= JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
} else {
$article .= JText::_('COM_CONTENT_READ_MORE');
$article .= JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
}
$article .= '</a></p>';
}
}
$args['article'] = $article;
// set tags
$tags = '';
if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) {
JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php');
foreach ($this->item->tags->itemTags as $i => $tag) {
if (in_array($tag->access, JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')))) {
if($i > 0) $tags .= ', ';
$tags .= '<a href="'.JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . ':' . $tag->alias)).'">'.$this->escape($tag->title).'</a>';
}
}
}
$args['tags'] = $tags;
// set edit
if (!$this->print) {
$attrs = array('class' => 'uk-margin-right');
$args['edit'] = $canEdit ? JHtml::_('icon.edit', $this->item, $params, $attrs) : '';
$args['edit'] .= $params->get('show_print_icon') ? JHtml::_('icon.print_popup', $this->item, $params, $attrs) : '';
$args['edit'] .= $params->get('show_email_icon') ? JHtml::_('icon.email', $this->item, $params, $attrs) : '';
} else {
$args['edit'] = JHtml::_('icon.print_screen', $this->item, $params);
}
// set previous and next
if (!empty($this->item->pagination)) {
$args['previous'] = ($prev = $this->item->prev) ? $prev : '';
$args['next'] = ($next = $this->item->next) ? $next : '';
}
// render template
echo $warp['template']->render('article', $args);
by sercosys
Please Log in or Create an account to join the conversation.
- joomlaplates
-
Offline
- Moderator
-
- Posts: 8841
- Thank you received: 1736
Replied by joomlaplates on topic JP Power: Blog-Titel unter Bild und nicht h1
Posted 6 years 9 months ago #21154
Das ist die falsche Datei.
Bitte benutzen sie die article.php
...\warp\systems\joomla\layouts\article.php
Hier finden sie auch den H1 und das Bild
Bitte benutzen sie die article.php
...\warp\systems\joomla\layouts\article.php
Hier finden sie auch den H1 und das Bild
Attachment Screenshot_10-2-3-4.jpg not found
Dokumentation:
www.joomlaplates.de/dokumentation.html
www.joomlaplates.de/dokumentation.html
Last Edit:6 years 9 months ago
by joomlaplates
Attachments:
Last edit: 6 years 9 months ago by joomlaplates.
Please Log in or Create an account to join the conversation.
Moderators: joomlaplates