Re: Missing picture? Me again...
Foud out something in the meantime:
In content.php located at /components/com_content - i found this code bit:
if ( $menu->componentid && ( $descrip || $descrip_image ) ) {
$link = $mosConfig_live_site.'/images/stories/'. $description->image;
echo '<tr>';
echo '<td valign="top">';
if ( $descrip_image ) {
echo '<img src="'. $link .'" align="'. $description->image_position .'"hspace="6" alt="" />'
}
if ( $descrip ) {
echo $description->description;
}
echo '<br/><br/>';
echo '</td>';
echo '</tr>';
And if I change "" $link = $mosConfig_live_site.'/images/stories/ "" to
"" $link = $mosConfig_live_site.'/images/stories/key.jpg "" - then the the key picture shows up in the site.
Can anyone help me translate the code bit - to solve this issue?
Thanks! |