Para que alguien le solucione la vida :
Este error aparece en una instalación de wordpress 3.3.2 al instalar lightbox y con ‘theme’ Zerafin :
Error: f.easing[i.animatedProperties[this.prop]] is not a function
Es un problema de compatibilidades de jquery… los que no nos dedicamos a programar con jquery es para nosotros bastante tedioso solucionar este tipo de problemas…
En este caso, hay un problema de compatiblidad de jquery.1.7.1.js con jquery.easing.1.1.js y se puede solucionar así
# en la carpeta que contiene el theme Zerafin wp-content/themes/Zerafin/js wget http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js wget http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.compatibility.js
y modificar el header.php del theme
eliminar : wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.1.js'); agregar : wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.3.js'); wp_enqueue_script('easing-comp', get_stylesheet_directory_uri() . '/js/jquery.easing.compatibility.js');
y funciona.
Deja una respuesta