Posted - 01/27/2021 : 13:08:14
Hi Bob,
In your vsadmin/inc/incadmin.php file search for this:
foreach($totalsarray as $key=>$val){ print '<tr><td style="width:10%"><strong>'.$count++.'</strong></td><td style="text-align:left;">'.$key.'</td><td style="text-align:right;">'.FormatEuroCurrency($val).'</td></tr>'; if($count>10) break; }
... and change it to this:
foreach($totalsarray as $key=>$val){ print '<tr><td style="width:10%"><strong>'.$count++.'</strong></td><td style="text-align:left;">'.$key.'</td><td style="text-align:right;">'.FormatEuroCurrency($val).'</td></tr>'; if($count>100) break; }
Then click on your top sellers and select 365 days.
This will only give you the top 100 customers in the last 365 days, not 2020, but it will get you close.
Keep in mind that this file will be overwritten on updates.
Patrick
Edited by - midvalleydrifter001 on 01/27/2021 14:38:49
|