-
- Downloads
[FIX] website_livechat : fix history in discuss visitor banner
Adding a string element to a list with += is not adding the element to the list but is instead adding every single character of the string as an element to the list. Building a string using a join method was resulting to an recent history displayed like H > O > M > E > ( > 8 > : > 4 > 2 > ) --> Should be : HOME (8:42) > Contact Us (8:45) Apart from that, since the tracking is now ordered by visit_datetime DESC, to have a chronological order, we need to reverse the list of last visited pages to have something like : Home (12:43) > About us (12:45) > Contact Us (12:52) instead of : Contact Us (12:52) > About us (12:45) > Home (12:43) Task ID: 2076190 PR #37340
Please register or sign in to comment