Recent Topics

1 Jan 13, 2008 16:51    

Moin,

vor kurzem habe ich die neue Version von B2evo 2.3 installiert.
Vorher hatte ich die Version 1.9.

In welcher Datei kann ich die Formatierung der Email und URL in den Kommentaren ändern?

Ich wollte das folgendes nicht mehr angezeigt wird:
[Mitglied] und [Besucher]

Und folgendes wollte ich ändern:
Der Name soll den Email link beinhalten und die Url sollte nicht mehr vollständig angezeigt werden stattdessen wollte ich ein kleines Icon für den URL link anzeigen lassen.

Kann mir da jemand weiterhelfen?
[url=http://www.apocalypsed.de]
apocalypsed |
online[/url]

2 Jan 15, 2008 00:30

Moin,

habe es jetzt selbst herausgefunden ;)
ihr könnt die den Kopf des Kommentare in der "blog/skins/_item_feedback.inc.php" finden
dann tauscht einfach

<?php
				switch( $Comment->get( 'type' ) )
				{
					case 'comment': // Display a comment:
						$Comment->permanent_link( T_('Comment') );
						echo ' '.T_('from:').' ';
						$Comment->author();
						$Comment->msgform_link( $Blog->get('msgformurl') );
						$Comment->author_url( '', ' &middot; ', '' );
						break;

					case 'trackback': // Display a trackback:
						$Comment->permanent_link( T_('Trackback') );
						echo ' '.T_('from:').' ';
						$Comment->author( '', '#', '', '#', 'htmlbody', true );
						break;

					case 'pingback': // Display a pingback:
						$Comment->permanent_link( T_('Pingback') );
						echo ' '.T_('from:').' ';
						$Comment->author( '', '#', '', '#', 'htmlbody', true );
						break;
				}
			?>


mit

<?php
				switch( $Comment->get( 'type' ) )
				{
					case 'comment': // Display a comment:
//						$Comment->permanent_link( T_('Comment') );
//						echo ' '.T_('from:').' ';
//						$Comment->author();

//
						echo T_('<a href="');
      						$Comment->author_url('','','',false);
        					echo T_('">');
        					$Comment->author('','', '<strong>', '</strong>');
        					echo T_('</a>');
						$Comment->msgform_link( $Blog->get('msgformurl') );
//						$Comment->author_url( '', ' &middot; ', '' );
      						break;

					case 'trackback': // Display a trackback:
						$Comment->permanent_link( T_('Trackback') );
						echo ' '.T_('from:').' ';
						$Comment->author( '', '#', '', '#', 'htmlbody', true );
						break;

					case 'pingback': // Display a pingback:
						$Comment->permanent_link( T_('Pingback') );
						echo ' '.T_('from:').' ';
						$Comment->author( '', '#', '', '#', 'htmlbody', true );
						break;
				}
			?>


aus.

geholfen hat mir dabei folgender Beitrag:
http://forums.b2evolution.net/viewtopic.php?t=1896&highlight=feedback+email+comments


Form is loading...