Print Page | Close Window

AJAX bubble question...

Printed From: ProductCart E-Commerce Solutions
Category: ProductCart
Forum Name: Customizing ProductCart
Forum Description: Exchange messages with other users that are customizing ProductCart.
URL: https://forum.productcart.com/forum_posts.asp?TID=672
Printed Date: 27-November-2024 at 8:50pm
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: AJAX bubble question...
Posted By: James
Subject: AJAX bubble question...
Date Posted: 23-February-2007 at 5:49am

Hi,
I have been editing xml_getPrdInfo.asp (the file that controls which information appears in the AJAX bubbles) and I have a question about modifying a particular piece of code... I only want the "Currently Out of Stock" message to appear in the bubbles ONLY if a customer is logged in... I know the code I need to edit is this:

'Show "Out of Stock" message
if (scShowStockLmt=-1 AND CLng(pStock)<1 AND pserviceSpec=0 AND pNoStock=0 AND pcv_intBackOrder=0) OR (pserviceSpec<>0 AND scShowStockLmt=-1 AND iBTOOutofstockpurchase=-1 AND CLng(pStock)<1 AND pNoStock=0 AND pcv_intBackOrder=0) then
 tmpList=tmpList & dictLanguage.Item(Session("language")&"_viewPrd_7") & "<br>" & vbcrlf
end if

...but I just can't figure out how to amend this code... Can anybody please help??




Replies:
Posted By: netprofits
Date Posted: 23-February-2007 at 6:24am
Hi James, try the following which checks if a customer is logged in. Note checking of the idCustomer session variable:

if ((scShowStockLmt=-1 AND CLng(pStock)<1 AND pserviceSpec=0 AND pNoStock=0 AND pcv_intBackOrder=0) OR (pserviceSpec<>0 AND scShowStockLmt=-1 AND iBTOOutofstockpurchase=-1 AND CLng(pStock)<1 AND pNoStock=0 AND pcv_intBackOrder=0)) AND (session("idCustomer")<>"0" AND session("idCustomer")<>"") then
 tmpList=tmpList & dictLanguage.Item(Session("language")&"_viewPrd_7") & "<br>" & vbcrlf
end if


-------------
NetProfits Internet Consulting

Certified ProductCart Developer

http://www.nicwebdesign.com" rel="nofollow - Our Site



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net