sinryder Posted December 26, 2004 Posted December 26, 2004 hello guys, i am using osc banner manager to display some of the banner's, every thing is working fine , but when you click on the banner it opens the link in new window. i want to change this option so the link should open in the same window. any help is greatly apprecaited thankyou Merry christmas :)
Guest Posted December 26, 2004 Posted December 26, 2004 In catalog/includes/functions/banner.php change: ? ? ?$banner_string = '<a href="' . tep_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner['banners_id']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_title']) . '</a>'; to: $banner_string = '<a href="' . tep_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner['banners_id']) . tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_title']) . '</a>';
sinryder Posted December 26, 2004 Author Posted December 26, 2004 In catalog/includes/functions/banner.php change: ? ? ?$banner_string = '<a href="' . tep_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner['banners_id']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_title']) . '</a>'; to: ? ? ?$banner_string = '<a href="' . tep_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner['banners_id']) . tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_title']) . '</a>'; <{POST_SNAPBACK}> hey matti i changed the code but now all the banners disappeared :(
bobg7 Posted December 26, 2004 Posted December 26, 2004 I tried this myself and it will do the trick for you: $banner_string = '<a href="' . tep_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner['banners_id']) . '" target="_self">' . tep_image(DIR_WS_IMAGES . $banner['banners_image'], $banner['banners_title']) . '</a>'; Simply change target="_blank" to target ="_self" Bob G. Installed Contributions: CCGV, Close Popup, Dynamic Meta Tags, Easy Populate, Froogle Data Feeder, Google Position, Infobox Header Entire Row, Live Support for OSC, PayPal Seal with CC images, Report_m Sales, Shop by Price Revised, SQL Updater, Who's Online Enhancement, Footer, GNA EP Assistant and still going.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.