Thanks. I'll take a look at that and see if there is anything out of whack there. My site is heavily modded, so it's always a challenge to regress and get these contributions working with stock files. I probably won't have time to fix the MailHide func until tomorrow. Thanks for the additional info.
BTW, in reference to the default language problem you had, you may also want to change the default language for new testimonials. If CST cannot figure out what language a user is, it will default flagging your testimonials in the database as this language code. The default to the contribution is English, but you can change it to anything you want. If you wish to change this, first look up your languages table and find the language_id column for your preferred default. Cross reference that with your preferred language. For example, English is “1”. To edit this setting in the SQL file, change one line.
For New Installs, modify the value (i.e., ‘1’) in this line:
`language_id` int(11) NOT NULL DEFAULT '1',
For Upgrade Installs, modify the value (i.e., ‘1’) in this line:
ALTER TABLE `customer_testimonials` ADD `language_id` INT( 11 ) NOT NULL DEFAULT '1';
Here's another bug fix... until I get v1.1 rolled out. One line of code to change to solve problem where if there are zero testimonials available in the customer's language, the "write a testimonial" box is displayed twice.