Quote Originally Posted by clydejones View Post
Can you post the changes your "programmer" made to tpl_logo_sidebox.php, I'd like to see what was done. Thanks
Here is the file transformed by the programmer :

// Link Option - uncomment this if you intend to use the logo as a link
$logoimage = '<a href="' . LOGO_SIDEBOX_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT) . '</a>';

//comment this out if you use the above link option.
//$logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT);

$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '">';

$content .= $logoimage;

$content .= '</div>';
?>