Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Removing Large Image link with Swap Image on Mouse mod

Removing Large Image link with Swap Image on Mouse mod

Locked

Views: 4,273

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
16 Aug 2007, 8:15 PM
#1
xjamathonx avatar

xjamathonx

New Zenner

Join Date:
Jun 2007
Posts:
30
Plugin Contributions:
0

Removing Large Image link with Swap Image on Mouse mod

How's it going? In my never ending quest to understand and customize Zen Cart I've stumbled across another block in the road regarding the swap image on mouse over mod.. I've read some threads and am completely comfortable using the mod to use my image swaps... Having it use the same size image for the roll over image and the smaller thumbnail hasn't proven to be too much of a problem to me in either look or functionality...

Where I am having the problem is removing the "Larger Image" link (text and or the actual pop up) from the additional images below my main product picture... It comes with a heavily modded additional_images.php in the includes/modules directory and for the life of me I can't figure out how to remove the links.. No amount of searching or trial and error has given me the right solution. If anyone has done this before or has any idea what i can do to make this work please let me know... I simply do not need or want the text to appear or the pop up to the exact same size image it's currently displaying on roll over.. Any advice would be great! Thanks for your time..

Jonathan

16 Aug 2007, 8:21 PM
#2
wojtekstaszewski avatar

wojtekstaszewski

New Zenner

Join Date:
Aug 2007
Posts:
1
Plugin Contributions:
0

Re: Removing Large Image link with Swap Image on Mouse mod

$script_link = '<script language="javascript" type="text/javascript"><!--' . "\n" . 'document.write(\'' . ($flag_display_large ? '<a href="javascript:popupWindow(\\\'' . $large_link . '\\\')">' . $thumb_slashes . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>' : $thumb_slashes) . '\');' . "\n" . '//--></script>';

$noscript_link = '<noscript>' . ($flag_display_large ? '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE_ADDITIONAL, 'pID=' . $_GET['products_id'] . '&pic=' . $i . '&products_image_large_additional=' . $products_image_large) . '" target="_blank">' . $thumb_regular . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>' : $thumb_regular ) . '</noscript>';

find in this additional_images.php this line and delete ' . TEXT_CLICK_TO_ENLARGE . '

17 Aug 2007, 1:55 AM
#3
xjamathonx avatar

xjamathonx

New Zenner

Join Date:
Jun 2007
Posts:
30
Plugin Contributions:
0

Re: Removing Large Image link with Swap Image on Mouse mod

wojtekstaszewski:

$script_link = '<script language="javascript" type="text/javascript"><!--' . "\n" . 'document.write(\'' . ($flag_display_large ? '<a href="javascript:popupWindow(\\\'' . $large_link . '\\\')">' . $thumb_slashes . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>' : $thumb_slashes) . '\');' . "\n" . '//--></script>';

$noscript_link = '<noscript>' . ($flag_display_large ? '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE_ADDITIONAL, 'pID=' . $_GET['products_id'] . '&pic=' . $i . '&products_image_large_additional=' . $products_image_large) . '" target="_blank">' . $thumb_regular . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>' : $thumb_regular ) . '</noscript>';

find in this additional_images.php this line and delete ' . TEXT_CLICK_TO_ENLARGE . '

unfortunately the swap over mouse mod heavily modifies the additional_images.php.. the link preparation portion of the code you quoted looks like this instead..

$script_link = '<script language="javascript" type="text/javascript"><!--' . "\n" . 'document.write(\'' . $ahref_start . $script_href . $onClick . $onMouseOver . $ahref_end . $img_thumb . $enlarge_text . $ahref_close . '\');' . "\n" . '//--></' . 'script>';

if (zen_not_null($noscript_href)) {
$ahref_start = '<a href="'; $ahref_end = '" target="_blank">';
$ahref_close = '</a>';
} else {
$ahref_start = '';
$ahref_end = '';
$ahref_close = '';
}
$noscript_link = '<noscript>' . $ahref_start . $noscript_href . $ahref_end . $img_thumb . $enlarge_text . $ahref_close . '</noscript>';

and that is why none of the solutions i can find online seem to work for this particular mod...

17 Aug 2007, 2:36 AM
#4
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Removing Large Image link with Swap Image on Mouse mod

Just find the line that sets what the $enlarge_text variable contains, and change it however you desire.

Default:```
$enlarge_text='<br />' . TEXT_CLICK_TO_ENLARGE;

If you want to remove *all* of what it's set to, just set it to ''; (two single quotes, and keep the closing ; )
17 Aug 2007, 3:55 AM
#5
xjamathonx avatar

xjamathonx

New Zenner

Join Date:
Jun 2007
Posts:
30
Plugin Contributions:
0

Re: Removing Large Image link with Swap Image on Mouse mod

DrByte:

Just find the line that sets what the $enlarge_text variable contains, and change it however you desire.

Default:```
$enlarge_text='<br />' . TEXT_CLICK_TO_ENLARGE;



Absolute life saver! Figures the creator of the mod would know the ins and outs better than anyone else..:D Thanks so much for the reply and the help! I'm sure it's been said before, but help and contributions like yours are definitely appreciated! Your mouse over mod is exactly the look and functionality I hand coded into my paypal based ecommerce websites before trying to make this switch to the fully functioning Zen cart and I am so glad through your mod I have found a way to maintain it.. Thanks again for both the mod and the help!

Jonathan
17 Aug 2007, 4:13 AM
#6
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Removing Large Image link with Swap Image on Mouse mod

Thanks for the kind words. :blush: I'm glad your shop is working the way you want !

17 Aug 2007, 2:13 PM
#7
xjamathonx avatar

xjamathonx

New Zenner

Join Date:
Jun 2007
Posts:
30
Plugin Contributions:
0

Re: Removing Large Image link with Swap Image on Mouse mod

DrByte:

Thanks for the kind words. :blush: I'm glad your shop is working the way you want !

No worries about the kind words.. They are definitely well deserved... As far as my store goes I won't jump too far ahead of the gun and say it's working exactly the way I want, but I am working on beating it into submission haha...

Product display is my last obstacle to tackle as far as design goes so at least that's progress...

Jonathan