I read an archived thread ( I can't post to it so here it is again)
Free Letters - Can Punctuation Be Free?
As suggested, I replaced the following line of code in
includes/functions/function_prices.php

Code: $letters_count = strlen(str_replace(' ', '', $string));
with
Code:
$letters_count = strlen(str_replace(' ', '', str_replace('.', '', $string)));
It does work, for "." but I'd like to add other punctuation as well. Specifically, comma, periods, dashes, and apostrophes. Might someone be able to toss me a clue?
thanks
steco