×

Notice

The forum is in read only mode.
Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC: Fehler bei Beitragstitel

Fehler bei Beitragstitel 13 years 10 months ago #11381

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Ich bin Joomla-Neuling und habe mir mal zum testen die Kommentarkkomponente installiert. So weit so gut aber sobald ich das Kommentarformular aufrufe wird der Titel verfälscht angezeigt. Das sieht dann so aus:

Un hier ist der Link zur Hompage: Link

Wichtig ist noch zu wissen das dies schon das zweite Commentmodul war das ich installiert haben und auch da war das Problem vorhanden. Hat jemand Rat?

Fehler bei Beitragstitel 13 years 10 months ago #11382

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Hey Bossard,
So you are saying that without our component you don't see this text on your website?

I had a look at your website source code and I found that:
<h2 class="art-PostHeaderIcon-wrapper"><?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon"), array('width' => '12', 'height' => '12')); ?> <span class="art-PostHeader">Neuer Beitrag</span></h2
This isn't related in any way with compojoomComment. I guess that something is wrong with your site template.

search for postheadericon.png in your site template files and perhaps delete all this text:
<?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon"), array('width' => '12', 'height' => '12')); ?>

Looking at your frontpage - this postheadericon is the green dot infront of the post, right?

Daniel

Fehler bei Beitragstitel 13 years 10 months ago #11385

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Hallo Daniel
Ich danke Dir für die Antwort. Ich habe nun folgender Code der default.php (Template/html/com_content/article) gelöscht.
<?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_(\"PostHeaderIcon\"), array('width' => '12', 'height' => '12')); ?>

Nun wird der Titel im Kommentareditor richt angezeigt jedoch ohne das grüne Postheadericon. Schade, aber im Notfall kann ich damit leben.

Hier noch der ganze Originalcode der default.php. Vielleicht hat ja sonst noch jemand eiene Idee:
<?php
 
defined('_JEXEC') or die('Restricted access'); // no direct access
 
require_once dirname(__FILE__) . str_replace('/', DIRECTORY_SEPARATOR, '/../../../functions.php');
 
 
 
$canEdit = ($this->user->authorize('com_content', 'edit', 'content', 'all') || $this->user->authorize('com_content', 'edit', 'content', 'own'));
 
 
 
echo artxPost(artxPageTitle($this, $this->params->get('show_page_title', 1) && $this->params->get('page_title') != $this->article->title), null);
 
?>
 
<div class="art-Post">
 
    <div class="art-Post-body">
 
<div class="art-Post-inner">
 
<?php
 
if ($this->params->get('show_title')) {
 
 artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\"><?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_(\"PostHeaderIcon\"), array('width' => '12', 'height' => '12')); ?> ");
 
 artxFragmentBegin("<span class=\"art-PostHeader\">");
 
 if ($this->params->get('link_titles') && $this->article->readmore_link != '')
 
  artxFragmentContent('<a href="' . $this->article->readmore_link . '" class="PostHeader">' . $this->escape($this->article->title) . '</a>');
 
 else
 
  artxFragmentContent($this->escape($this->article->title));
 
 artxFragmentEnd("</span>\r\n");
 
 artxFragmentEnd("</h2>\r\n");
 
}
 
artxFragmentBegin("<div class=\"art-PostHeaderIcons art-metadata-icons\">\r\n");
 
if ($this->params->get('show_create_date')) {
 
  echo artxFragment('', JHTML::_('image.site', 'PostDateIcon.png', null, null, null, JText::_("PostDateIcon"), array('width' => '17', 'height' => '18')) . JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC2')), '', ' | ');
 
}
 
if (($this->params->get('show_author')) && ($this->article->author != "")) {
 
  echo artxFragment('', JHTML::_('image.site', 'PostAuthorIcon.png', null, null, null, JText::_("PostAuthorIcon"), array('width' => '14', 'height' => '14')) . JText::sprintf('Written by', ($this->article->created_by_alias ? $this->article->created_by_alias : $this->article->author)), '', ' | ');
 
}
 
if ($this->params->get('show_url') && $this->article->urls)
 
 artxFragment('', '<a href="http://' . $this->item->urls . '" target="_blank">' . $this->item->urls . '</a>', '', ' | ');
 
if (!$this->print) {
 
 artxFragmentBegin('<span class="art-metadata-icons">');
 
 if ($this->params->get('show_pdf_icon'))
 
  artxFragment('', JHTML::_('icon.pdf',  $this->article, $this->params, $this->access), '', '&nbsp;');
 
 if ($this->params->get('show_print_icon' ))
 
  artxFragment('', JHTML::_('icon.print_popup', $this->article, $this->params, $this->access), '', '&nbsp;');
 
 if ($this->params->get('show_email_icon'))
 
  artxFragment('', JHTML::_('icon.email', $this->article, $this->params, $this->access), '', '&nbsp;');
 
 artxFragmentEnd('</span>', ' | ');
 
 if ($canEdit)
 
  artxFragment('', JHTML::_('icon.edit', $this->article, $this->params, $this->access), '', ' | ');
 
} else
 
 artxFragment('', JHTML::_('icon.print_screen',  $this->article, $this->params, $this->access, array('class' => 'art-metadata-icon')), '', ' | ');
 
artxFragmentEnd("\r\n</div>\r\n");
 
echo "<div class=\"art-PostContent\">\r\n";
 
if (!$this->params->get('show_intro'))
 
 echo $this->article->event->afterDisplayTitle;
 
echo $this->article->event->beforeDisplayContent;
 
if (($this->params->get('show_section') && $this->article->sectionid) || ($this->params->get('show_category') && $this->article->catid)) {
 
?>
 
<table class="contentpaneopen<?php echo $this->params->get('pageclass_sfx' ); ?>">
 
<tr>
 
	<td>
 
<?php
 
if ($this->params->get('show_section') && $this->article->sectionid && isset($this->article->section)) {
 
 echo "<span>";
 
 if ($this->params->get('link_section'))
 
  echo '<a href="'.JRoute::_(ContentHelperRoute::getSectionRoute($this->article->sectionid)).'">';
 
 echo $this->article->section;
 
 if ($this->params->get('link_section'))
 
  echo '</a>';
 
 if ($this->params->get('show_category'))
 
  echo ' - ';
 
 echo "</span>";
 
}
 
if ($this->params->get('show_category') && $this->article->catid) {
 
 echo "<span>";
 
 if ($this->params->get('link_category'))
 
  echo '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->article->catslug, $this->article->sectionid)).'">';
 
 echo $this->article->category;
 
 if ($this->params->get('link_category'))
 
  echo '</a>';
 
 echo "</span>";
 
}
 
?>
 
	</td>
 
</tr>
 
</table>
 
<?php
 
}
 
if (isset ($this->article->toc))
 
 echo $this->article->toc;
 
echo "<div class=\"art-article\">";
 
echo $this->article->text;
 
echo "</div>";
 
if (intval($this->article->modified) !=0 && $this->params->get('show_modify_date')) {
 
 echo "<p class=\"modifydate\">";
 
 echo JText::_('Last Updated' ) . ' (' . JHTML::_('date', $this->article->modified, JText::_('DATE_FORMAT_LC2')) . ')';
 
 echo "</p>";
 
}
 
echo "<span class=\"article_separator\">&nbsp;</span>";
 
echo $this->article->event->afterDisplayContent;
 
echo "\r\n</div>\r\n<div class=\"cleared\"></div>\r\n";
 
?>
 
 
 
</div>
 
 
 
    </div>
 
</div>
 
 
 

Fehler bei Beitragstitel 13 years 10 months ago #11387

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Perhaps you can try to replace the code with this one:
<?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon")); ?>

Not sure if it is going to work, but try it out.

Fehler bei Beitragstitel 13 years 10 months ago #11409

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Netter Versuch, aber leider kommt jetzt folgende Fehlermeldung:

Parse error: syntax error, unexpected T_STRING in /home/.../html/com_content/article/default.php on line 14

Nicht tragisch, wie gesagt... i can live with it.

Fehler bei Beitragstitel 13 years 10 months ago #11410

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
The error message shows that you've made something wrong and probably have deleted a comma or ; something like this.

I just copied the above text in my template and didn't get any error message of that kind.

Daniel

P.S. If you like the component please write a review here: extensions.joomla.org/extensions/contact...icles-comments/12259

Fehler bei Beitragstitel 13 years 10 months ago #11411

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Ich hab deinen Code wie folgt eingesetzt:
<?php
if ($this->params->get('show_title')) {
 artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\"><?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon")); ?>");
 artxFragmentBegin("<span class=\"art-PostHeader\">");
 if ($this->params->get('link_titles') && $this->article->readmore_link != '')
  artxFragmentContent('<a href="' . $this->article->readmore_link . '" class="PostHeader">' . $this->escape($this->article->title) . '</a>');
 else

Fehler bei Beitragstitel 13 years 10 months ago #11412

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
yep, that is definitly wrong :) I mean - the code generates a fatal error, because you haven't closed it as you should.
change the first artxFrgmentBegin to
artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\">" .
		 JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon")));

Fehler bei Beitragstitel 13 years 10 months ago #11414

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Great! Jetzt funktionierts! Vielen Dank!

Ein kleines Detail bleibt allerdings noch: Wie bringe ich einen Abstand zwischen das Icon und den Titel?

Fehler bei Beitragstitel 13 years 10 months ago #11415

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Try it by adding a space after this sign >
......
$this->article->readmore_link . '" class="PostHeader"> '
.....

Fehler bei Beitragstitel 13 years 10 months ago #11418

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Leider nein :-(

Wird der Abstand nicht mit dem array('width' => '12', 'height' => '12' gemacht?

Fehler bei Beitragstitel 13 years 10 months ago #11423

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Nein, mit dem array(wi....) wird die größe des Bildes bestimmt.

Try to add empty spaces or the   character between the image and the text.

Fehler bei Beitragstitel 13 years 10 months ago #11424

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
OMFG, Ich habe jetzt gerade bemerkt, dass du auf Deutsch schreibst und dass ich auf Englisch antworte... Sorry...

Fehler bei Beitragstitel 13 years 10 months ago #11433

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Alles klar, jetzt haben wir es geschafft.
 artxFragmentBegin("&nbsp;<span class=\"art-PostHeader\">");

Ich sage recht herzlichen Dank für die prompte Unterstützung.
Kein Problem wegen dem Englisch, so habe ich auch wieder etwas dazugelernt ;-)

PS: Wo kann man hier etwas spenden?

Fehler bei Beitragstitel 13 years 10 months ago #11434

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Haha, spenden :)
Du hast ja die Komponente gekauft, brauchst ja nicht zu spenden :)
Ich würde dich einfach bitten auf extensions.joomla.org einen Review abzugeben - so können andere Benutzer erfahren wie toll die Komponente ist. :) Danke im Voraus!

Fehler bei Beitragstitel 13 years 10 months ago #11435

  • Bossard
  • Bossard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 8
  • Thank you received: 0
Ups, was habe ich denn jetzt falsch verstanden?

Ich habe nie etwas bezahlt für die Komponente sondern einfach auf joomlaos.de runtergeladen. Da steht üerall die Software ist free. Allerdings habe ich nun den Spendenbutton in der Komponentenadmin unter "About" gesehen. hmm

Fehler bei Beitragstitel 13 years 10 months ago #11436

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Ah, du hast joomlacomment :) gut.
Ja joomlacomment ist free, aber dafür machen wir keine updates mehr und generel untestrützen wir es nicht.

Die neue Version ist compojoomComment und damit du compojoomComment bekommst musst du eine support subscription für 24€ kaufen. (die support subscription erlaubt dir support anfragen zu stellen für 1 jahr und du kriegst auch updates innerhalb von einem jahr)

Gruß,
Daniel
  • Page:
  • 1
Time to create page: 0.203 seconds