![]() |
Re: Pictures in recommends.tpl for 3 column format
Just wanted to thank Balinor for the codes below. It works great as of version 4.1.3 :) YEAH!!!!!!
Just a quick question, how do I insert a simple line space so that the product title would drop down and be center under the product thumbnail? Here is how it currently looks. http://www.mvpautoparts.com/shop/product.php?productid=17036&cat=0&page=1 Thanks again for all of your help. -Tuan Quote:
|
Re: Pictures in recommends.tpl for 3 column format
Hi ETInteractive,
Would you be so kind and help the us, the code-challenged people, in getting this done? I've tried to looked in the two files you mentioned below, but didn't quite understand what needs to be replaced. This is the same issue I have with the "Best Sellers" module as well. It is calling all the thumbnails via the "image.php" file. Very, very slow. http://forum.x-cart.com/showthread.php?t=25194 My guess is that we have to replace this code Code:
<a href=product.php?productid={$recommends[num].productid}&cat={$cat}&page={$navigation_page}>{include file="product_thumbnail.tpl" productid=$recommends[num].productid image_x=80 product=$recommends[num].product tmbn_url=$recommends[num].tmbn_url} With something similar like this one (from the Manufacturer template). But I haven't be able to figure the exact syntax format yet. :( Code:
<A href="manufacturers.php?manufacturerid={$manufacturers[mid].manufacturerid}"> Quote:
|
Re: Pictures in recommends.tpl for 3 column format
Does anyone know how to pull the images from the filesystem rather then from image.php?
This causes the product pages to load much slower! |
Re: Pictures in recommends.tpl for 3 column format
hi
For some reason i can't find where to set the max number of products to show in the Recommended list ? |
Re: Pictures in recommends.tpl for 3 column format
General Settings>Module Options>Number of products to be displayed in recommended products list:
|
Re: Pictures in recommends.tpl for 3 column format
Thanks for that.
I was having a blank moment. |
Re: Pictures in recommends.tpl for 3 column format
Well, just to update everyone on this thread, I contacted the X-cart team and Eugene Kaznacheev in the technical support team was able to ressolve the issue. Of course that cost me some support point, but I thought it was well worth it. All of my images from the "Best Sellers" and "Recommended Products" are now being referenced via the direct filesystem path and no longer being pulled via "image.php" file. WOW, they are so much faster. Night and day difference!!!
With that being said, I'm posting the code modification required to make this work down below. Hopefully this will help someone in the future. Cheers -Tuan 1. Edit <xcart_dir>/modules/Bestsellers/bestsellers.php script and replace: Code:
$smarty->assign("bestsellers",$bestsellers); with Code:
foreach ($bestsellers as $i=>$item) { 2. Then edit <xcart_dir>/recommends.php file and replace: Code:
$smarty->assign("recommends",$recommends); with Code:
foreach ($recommends as $i=>$item) { --------------------------------------------------------------------------------------------------------------------- After that, you would need to modify the "xcart_dir\skin1\modules\Bestsellers\bestsellers.t pl" and "xcart_dir\skin1\modules\Recommended_Products\reco mmends.tpl" files as well. And below is how I currently have those two files configure. Cheers -Tuan "xcart_dir\skin1\modules\Bestsellers\bestsellers.t pl" File Code:
{* $Id: bestsellers.tpl,v 1.8 2005/11/21 12:42:00 max Exp $ *} Code:
{if $recommends} Quote:
|
Re: Pictures in recommends.tpl for 3 column format
For those of you using DSEFU and Telefirma's image mod's:
THIS IS ONLY FOR RCOMMENDED PRODUCTS AND I"M USING 2 COLUMNS recommends.php find: Code:
$smarty->assign("recommends",$recommends); Code:
foreach ($recommends as $i=>$item) { recommends.tpl should look like: Code:
{if $recommends} |
Re: Pictures in recommends.tpl for 3 column format
hi guys, hw would you show price on recommeds.tpl. check this out http://www.lootsale.co.uk/product.php?productid=37901&cat=328&page=1
i have managed to show prices under upselling products but recommended products price seems to be pain. Plz help? ive tired £{$recommends[num].price} and £{$recommends[num].taxed_price} but none of them works... |
Re: Pictures in recommends.tpl for 3 column format
Great mod. Balinor's version (post #22) works perfectly in 4.0.15. I added a <br> before
Code:
<SPAN class="ItemsList">{$recommends[num].product}</SPAN> |
All times are GMT -8. The time now is 08:15 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.