Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Visitor Profile: order of visit numeration is confusing #8491

Closed
hpvd opened this issue Aug 5, 2015 · 8 comments · Fixed by #11579
Closed

Visitor Profile: order of visit numeration is confusing #8491

hpvd opened this issue Aug 5, 2015 · 8 comments · Fixed by #11579
Assignees
Labels
c: Usability For issues that let users achieve a defined goal more effectively or efficiently.
Milestone

Comments

@hpvd
Copy link

hpvd commented Aug 5, 2015

In the visitor profile you can see the visits of a visitor.
These visits are numbered from top to bottom.

Shouldn't it be from the logical pow the other way around,
so that the first visit has number 1 and every new visits gets the following number?

In addition beside the logic problem, the number of the visits in the past changes, so one could not talk about e.g. the visit with number 4 because when there is a new visit these number changes...

What do you think?

Please see attachment
2015-08-05_16h29_52

@hpvd hpvd changed the title Visitor profil: direction for visit-numbers Visitor Profil: direction of visit-numeration is confusing Aug 5, 2015
@tsteur
Copy link
Member

tsteur commented Aug 6, 2015

👍

@tsteur tsteur added Help wanted Beginner friendly issues or issues where we'd highly appreciate community's help and involvement. c: Usability For issues that let users achieve a defined goal more effectively or efficiently. labels Aug 6, 2015
@Flux3PO
Copy link

Flux3PO commented Aug 28, 2015

I can confirm, I do see this as an issue as well (or at least confusing)

@mattab mattab added this to the 2.15.1 milestone Sep 20, 2015
@tsteur
Copy link
Member

tsteur commented Oct 27, 2015

It's not as trivial as we could change change it to 4, 3, 2, 1 but it might be wrong if there were eg 50 visits. Then it should be rather "Visit 50, 49, 48, 47, ...".

There might be an issue if there were more than 100 visits since we apparently only fetch 100 visits. In this case we would possible show "Visit 100, visit 99, visit 98" which might be actually a higher visit.

To be confirmed

@hpvd
Copy link
Author

hpvd commented Oct 28, 2015

yes sure. 4,3,2,1 was only an example. Should take all "known" visits into account.

Regarding only fetching 100 visits, one maybe can think of a two step approach:

  1. make it working <100 visits within this ticket (which is already a lot)
  2. and open a new ticket for making it working fine for >100 visits

in 1) one may show instead of numbering the visits for every shown visit "99+"

@hpvd
Copy link
Author

hpvd commented Oct 28, 2015

btw: are you sure there is a 100 visit limit? One could select show to 500 visits please see attachment.
Or is the 100 a limit for visits of the same visitor?
2015-10-28_06h59_28

@Glisse1
Copy link

Glisse1 commented Oct 28, 2015

Yes, the numbering is wrong, or at least confusing as stated. First visit should be the first visit, not the last. Opening a visitor profile in live widget should list me the visitor with 14th visit today as visit #14, not #1

@tsteur
Copy link
Member

tsteur commented Nov 16, 2015

btw: are you sure there is a 100 visit limit? One could select show to 500 visits please see attachment.
Or is the 100 a limit for visits of the same visitor?

There is actually a limit of 10 visits in the visitor profile. The limit selector is for the visitor log, not for the visitor profile. This means we'd need to fetch all visits initially to show a correct number which will be most likely slow. I tried to implement it but as soon as one clicks on the "load more" link it is a bit confusing even when showing 10+. If it was 100 we could maybe do it as there might be not so many users having 100+ visits but 10+ visits happens pretty often.

I think the only solution will be to actually fetch the number of visits for a certain user. There is an index on idsite, idvisitor so it should be pretty fast actually.

@tsteur tsteur removed this from the 2.15.1 milestone Nov 24, 2015
@mattab mattab removed the Help wanted Beginner friendly issues or issues where we'd highly appreciate community's help and involvement. label Nov 26, 2015
@mattab mattab added this to the Mid term milestone Nov 26, 2015
@mattab mattab modified the milestones: Long term, Mid term Dec 5, 2016
@mattab mattab modified the milestones: 3.1.0, Backlog (Help wanted) Jul 10, 2017
@mattab
Copy link
Member

mattab commented Jul 10, 2017

A few users have reported this recently so increasing priority

@mattab mattab changed the title Visitor Profil: direction of visit-numeration is confusing Visitor Profile: order of visit numeration is confusing Sep 11, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: Usability For issues that let users achieve a defined goal more effectively or efficiently.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants