Hi Takayuki
It is a great plugin.
I have the same question and nowhere can I find the answer to this.
How to change the date-format, e.g. in European format like DD.MM.YYYY (18.04.2013)? and where ? Inline formatting isn't working with EI. Date works in Chrome with calendar pop up but in IE which is why we need to make this work in IE.
Can you please help or at least you try it in IE and see the problem.
I can see in the formatting.php file
function wpcf7_is_date( $date ) {
$result = preg_match( '/^([0-9]{4,})-([0-9]{2})-([0-9]{2})$/', $date, $matches );
which is clearly marked as sequence for non European format.([0-9]{4,})-([0-9]{2})-([0-9]{2})
Should I change these to ([0-9]{2,})-([0-9]{2})-([0-9]{2})
in formatting.php , shortcode.php , taggenerator.js . will this fix it?
Can someone else perhaps help with this.