View Single Post
  #47  
Old 01-28-2008, 10:05 PM
 
MoonDog MoonDog is offline
 

Advanced Member
  
Join Date: Aug 2007
Posts: 93
 

Default Re: Recently Viewed Mod

congiothoang,

I'm happy to see you got it working.

mike_turbo,
Quote:

This is working fine except i am still getting nullnullnull under the prices.
See if this will work for you.
Find this code in recently_viewed.tpl:
Code:
if (p1 !=null) {document.write(p1)} if (p2) {document.write(p2)} if (p3) {document.write(p3)} if (p4) {document.write(p4)}
and edit it so it looks like this:
Code:
if (p1 !=null) {document.write(p1)} if (p2 !=null) {document.write(p2)} if (p3 !=null) {document.write(p3)} if (p4 !=null) {document.write(p4)}
I tried to recreate the null error you are getting so that I can troubleshoot it but I was unable to do so.
Hopefully as a longshot this will help.


- MoonDog -
__________________
X-CART Gold v4.1.8
Reply With Quote