function custom_replace_hfe_script() {
// if (!is_user_logged_in()) {
// Deregister the existing script
wp_deregister_script('hfe-frontend-js');
// Register and enqueue your custom script
wp_enqueue_script(
'hfe-frontend-js-min',
get_stylesheet_directory_uri() . '/inc/js/frontend-min.js',
array('jquery'), // Add dependencies if needed
null,
true // Load in the footer
);
// }
}
add_action('wp_enqueue_scripts', 'custom_replace_hfe_script', 20);
Jagdish Sarma Asked question February 19, 2025