I noticed that it’s not adding any commas to the numbers. Like 15000 instead of 15,ooo. Is there a way to add this?
You can change how display it using the social_count_plus_number_format
for the widget:
function my_custom_scp_number_format( $total ) {
return number_format( $total, 0, '', ',' );
}
add_filter( 'social_count_plus_number_format', 'my_custom_scp_number_format' );
And you can use the same function while displaying the total, of course:
echo my_custom_scp_number_format( array_sum( get_scp_all() ) );
Also, I have a fairly large email list and since there’s no Mailchimp way to add it. Can I add the number manually any way?
I’m looking for include a Mailchimp integration in this plugin soon. But of course, you can include manually too, bot I have plans to try implement it before November.