X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Product.tpl Swap detailed image and send to a friend (https://forum.x-cart.com/showthread.php?t=17976)

uprising 11-15-2005 02:18 AM

Product.tpl Swap detailed image and send to a friend
 
I'd like to swap the order of "send to a friend" and "detailed images" so that the detailed images appear first.

I've found the lines of code for showing the detailed images but when I move them to be before the "send to a friend" code nothing after the detailed images appears to be displayed.

I figure I'm not putting the code in the right place. Can anyone give me a clue where the lines of code need to be inserted so that detailed images display before "send to a friend"

QVS 11-15-2005 02:31 AM

ok this is what i did, maybe not the best way, but it works fine for me on 4.0.14......


edit customer/main/product.tpl

around line 158 find -

Code:

{include file="customer/main/send_to_friend.tpl" }
{if $active_modules.Detailed_Product_Images ne ""}



{include file="modules/Detailed_Product_Images/product_images.tpl" }
{/if}



change to:


Code:

{if $active_modules.Detailed_Product_Images ne ""}



{include file="modules/Detailed_Product_Images/product_images.tpl" }
{/if}
{include file="customer/main/send_to_friend.tpl" }


uprising 11-15-2005 03:17 PM

Thanks for the tip here QVS, I was in the right area but not quite close enough with my previous attempts, this worked fine for me too, just had to add a

in there to get the spacing right but otherwise spot on


All times are GMT -8. The time now is 05:25 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.