You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
cosmopet-architecture/wp-content/themes/cosmopet/global-functions/plugin-override-functions.php

16 lines
630 B

<?php
add_action('wp_enqueue_scripts', 'override_cdek_widget_script', 100);
function override_cdek_widget_script() {
// Убираем оригинал
wp_dequeue_script('cdek-map');
wp_deregister_script('cdek-map');
// Подключаем свой модифицированный
wp_enqueue_script(
'cdek-map', // тот же handle — это ВАЖНО!
get_stylesheet_directory_uri() . '/static/js/cdek-map.js',
['jquery', 'lodash', 'wp-i18n', 'cdek-widget'], // зависимости, если нужны
'1.0',
true // в футере
);
}