on the error log file show this error >
Code: Select all
PHP Fatal error: Cannot redeclare cd_dob_date_raw() (previously declared
in /home/xxxx/public_html/shop/includes/languages/english/modules/customer_data/cd_dob.php:24)
in /home/xxxx/public_html/shop/includes/languages/finnish/modules/customer_data/cd_dob.php on line 24Code: Select all
function cd_dob_date_raw($date, $reverse = false) {
return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
}
from this
Code: Select all
function cd_dob_date_raw($date, $reverse = false) {
Code: Select all
if(function_exists('cd_dob_date_raw($date, $reverse = false)')) {Br
Omar