1 Answers
Hi,
If you want to call all css and js files in footer instead of header, you can open the functions.php file in the folder path “wp-content\themes\dw-focus”. Find the line 205.
Replace the following code:
add_action( 'wp_enqueue_scripts', 'dw_focus_scripts' );
With new code:
add_action( 'wp_footer', 'dw_focus_scripts' );
Note: If you do it, when load your site will be broken.
Regards,
Please login or Register to submit your answer