View Single Post
  #109  
Old 09-17-2006, 02:22 PM
 
brucew brucew is offline
 

Member
  
Join Date: Jan 2006
Posts: 26
 

Default Re: Upselling Products module modification

Quote:
Originally Posted by brucew
HELP!!

This mod is amazing. Perfect. The only thing I need is for the icons to link to the prduct details. Right now all it does is give people the option to buy or wishlist. Also displaying the short description would be helpful.

Can anyone help?!

Thanks

...omg.

I actually figured it out on my own. That NEVER HAPPENS! I'm so proud of me.

I got the icons clickable by editing:

Code:
{include file="product_thumbnail.tpl" productid=$product_links[cat_num].productid image_x=66}

with
Code:
<a href="product.php?productid={ $product_links[cat_num].productid }"{if $config.Modules.upselling_new_window eq 'Y'} target="_blank"{/if}> {include file="product_thumbnail.tpl" productid=$product_links[cat_num].productid image_x=66}</a>

I got the product title to link by editing:

Code:
{$product_links[cat_num].product|escape}

with
Code:
<a href="product.php?productid={ $product_links[cat_num].productid }"{if $config.Modules.upselling_new_window eq 'Y'} target="_blank"{/if}> <span class="ProductTitle">{$product_links[cat_num].product|escape}</span></a>

Now, the only tihng that would perfect it (for me at least) would be getting the short description to show.
__________________
-----------------------------------------------
X-Cart Gold 4.0.17
Reply With Quote