it seams the problem comes frome some case issue that can be solved by renaming the file:
wp-content/themes/enigma/js/carouFredSel-6.2.1/jquery.carouFredSel-6.2.1.js
in
wp-content/themes/enigma/js/carouFredSel-6.2.1/jquery.caroufredsel-6.2.1.js
@langerlaurence – Hello You need to upgrade to latest version of the theme and then you need to activate the weblizar-companion plugin which will activate the customizr option in your latest enigma setup.
thank you.
Got a fatal error after upgrading to the 7.1.1 version 🙁
PHP Fatal error: require(): Failed opening required ‘/home/httpd/wordpress/public_html/wp-content/themes/enigma/customizer-pro/class-customize.php’ (include_path=’.:/usr/local/lib/php’) in /home/httpd/wordpress/public_html/wp-content/themes/enigma/functions.php on line 25
@bottapress – Please put this code in functions.php line number 25
require get_template_directory() . '/upgrade-to-pro/class-customize.php';
I am updating theme.
Thanks
Thank you. I was in a rush, so I had to change the theme I use.
It was just for a course I follow, so it’s no big deal.
Thanks for the answers.
laurence
I’m running into a similar issue. On line 24 core/scripts/css-js.php from v5.1 of the engima-parallax theme, I see:
wp_enqueue_script('caroufredsel', get_template_directory_uri() .'/js/caroufredsel-6.2.1/jquery.caroufredsel-6.2.1.js', array('jquery'), true, true );
wp_enqueue_script('caroufredsel-element', get_template_directory_uri() .'/js/caroufredsel-6.2.1/caroufredsel-element.js', array('jquery'), true, true );
However, the directory is named carouFredSel (different capitalization), so the Inspect tab of my browser reports a status 404 (not found) when trying to load these. The correct lines should be:
wp_enqueue_script('caroufredsel', get_template_directory_uri() .'/js/carouFredSel-6.2.1/jquery.caroufredsel-6.2.1.js', array('jquery'), true, true );
wp_enqueue_script('caroufredsel-element', get_template_directory_uri() .'/js/carouFredSel-6.2.1/caroufredsel-element.js', array('jquery'), true, true );
Would you update this in the next version of the theme?