Hi,
I find a solution but I cannot release a new version now because I'm working on the multilanguage version, but I give you the info to modify yourselfe the asp code.
1�) Open the page: dwzCart/dwzCartClass.asp 2�) go to line 695
the actual line from 695 to 698 are if RedirectUrl <> "" then response.Redirect(RedirectUrl) response.End() end if
Replace them with this lines: if RedirectUrl <> "" then for each key in request.QueryString if left(lcase(key), 3) <> "dwz" then if instr(RedirectUrl, "?")>0 then RedirectUrl = RedirectUrl & "&" else RedirectUrl = RedirectUrl & "?" end if RedirectUrl = RedirectUrl & key & "=" & request.QueryString(key) end if next response.Redirect(RedirectUrl) response.End() end if
In the next rellease I will add this option
Gianluigi
|
|
|