Hi Amal,
amsharma hat geschrieben:
- Can I show the figures with a comma for every thousand, like All Days: 62,355 or All Days: 3,546,783
Such a "user formated" output of the
numbers is currently not implemented.
You need this only within the Pre/Post-Expression ? Then it is possible a little change which you can do easily.
Simplest way: there is a change needed within file "helper.php" and there within method "replacePREANDPOSTREPLACES".
important is red marked line/part
"
else if ( $value == '$countAll$' ) {
$replacing = str_replace( $value,
"" . $this->all_visitors, $replacing );
"
replace this with:
"" . number_format($this->all_visitors, 0, '.', ',') ,OR better, because the number-chars depends on your joomla-language setting :
"" . number_format($this->all_visitors, 0, JText::_('DECIMALS_SEPARATOR'), JText::_('THOUSANDS_SEPARATOR') ) ,amsharma hat geschrieben:
- Can I possibly show the Digit Counter and another figure like "Yesterday" together on the same line.
generally you can do all what you need/want with the "Expressions"

If you not familiar with HTML, please show me a "template / image / .." from your design of your whish and I try to prepare the Pre/Post-value for you.
amsharma hat geschrieben:
- I just upgraded my counter to version for Joomla 3. I saw the upgrade instructions which ask me to execute a SQL file. I couldn't find that file.
The counter-delivery-file for Joomla 3 no longer contains that script. From which version you come from ? The SQL-Script was only needed from a version 1.9.x to 2.x..
amsharma hat geschrieben:
PS I didn't get a mail about your reply so I saw this late.
yes..since a while, my site-hoster is little bit "troubling"
Regards,
Micha