Hi,
Where can I find the enfold/js file? And do I need a child theme for that?
Thanks in advance!
Hey tonydobrevski,
There is no such file, enfold has different js files. Do you have an issue? Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Dear Victoria,
I would like to change the size of the header when it shrinks. I found the answer here – https://kriesi.at/support/topic/controling-the-size-of-shrinking-header/ but can’t find the folders.
Thank you in advance!
Best,
Anton
Hi,
Please go to wp-content/themes/enfold/js/avia.js via FTP to find the file, then copy it inside enfold-child/js/ folder and add following code to Functions.php file of your child theme
function wp_change_aviajs() {
wp_dequeue_script( 'avia-default' );
wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true );
}
add_action( 'wp_print_scripts', 'wp_change_aviajs', 100 );
Best regards,
Yigit
Thank you very much!