Jump to content
xt:Commerce Community Forum

Link in box einf?gen, problemchen


ostap

Recommended Posts

Hallo,

irgendwie habe ich es geschaft ein neue box zu machen. Z.B. der box muss durch ein link direkt zu Google f?ren. Ich habe in Content maneger volgendes gemacht:

als title Google

so weit so gut, local functioniert alles 1A, in Box steht Google, wenn ich darauf clike komme ich zu suchmaschine.

ABER wenn ich es alles auf mein server ?bertrage sieht es anderes aus und zwar sche.....

in Box steht google.html">Google von wo kommt google.html????? wie kriege ich es loss???

F?r Ihre Hilfe werde ich sehr Dankbar

Link to comment
Share on other sites

Mach Folgendes:

statt

	while ($content_data = xtc_db_fetch_array($content_query, true)) {

 $SEF_parameter = '';

 if (SEARCH_ENGINE_FRIENDLY_URLS == 'true')

 	$SEF_parameter = '&content='.xtc_cleanName($content_data['content_title']);


 $content_string .= '<img src="templates/'.CURRENT_TEMPLATE.'/img/icon_arrow.jpg" alt="" /> <a href="'.xtc_href_link(FILENAME_CONTENT, 'coID='.$content_data['content_group'].$SEF_parameter).'">'.$content_data['content_title'].'</a><br />';

	}
dies hier
	while ($content_data = xtc_db_fetch_array($content_query, true)) {

 $SEF_parameter = '';

 if (SEARCH_ENGINE_FRIENDLY_URLS == 'true')

 	$SEF_parameter = '&content='.xtc_cleanName($content_data['content_title']);


// pr?fen, ob es ein link ist

if(strpos($content_data['content_title'], 'http')){

 $content_string .= '<img src="templates/'.CURRENT_TEMPLATE.'/img/icon_arrow.jpg" alt="" />' . $content_data['content_title'] . '<br />';

}else{

 $content_string .= '<img src="templates/'.CURRENT_TEMPLATE.'/img/icon_arrow.jpg" alt="" /> <a href="'.xtc_href_link(FILENAME_CONTENT, 'coID='.$content_data['content_group'].$SEF_parameter).'">'.$content_data['content_title'].'</a><br />';

}

	}
Deine Eingabe im Content-Manager unter Titel:
<a href="http://www.link.de">Link</a>

Ich hoffe ich hab nichts vergessen :closedeyes:

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...