Перестала работать кнопка добавления товара в корзину, которая работает на jquery в woocommerce
перепробовал кучу вариантов, не могу найти в чем проблема, подключая скрипты через файл фанкшин
пример товара
https://ronbel.ru/klejkaya-lenta-malyarnaya-48x40x125
add_action( 'init', 'true_jquery_register' );
function true_jquery_register() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', ( 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' ), false, null, true );
wp_enqueue_script( 'jquery' );
}
}
// Загрузка библиотек и стилей
function theme_styles() {
// Стили
wp_enqueue_style('bootstrap-style', 'https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css', array(), '4.2.1');
wp_enqueue_style('ronbel_style', get_stylesheet_uri());
wp_enqueue_style('ronbel_fonts', 'https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap&subset=cyrillic,cyrillic-ext&display=swap');
wp_enqueue_script('popper-js', 'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js', false, true);
wp_enqueue_script( 'bootstrap-js', 'https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js', false, true);
}
add_action( 'wp_enqueue_scripts', 'theme_styles' ); // Хук цепляет стили