This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_wc_ajax_variation_threshold( $qty, $product ) { | |
return 10; | |
} | |
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_get_order_item_totals', 'adjust_woocommerce_get_order_item_totals' ); | |
function adjust_woocommerce_get_order_item_totals( $totals ) { | |
unset($totals['cart_subtotal'] ); | |
return $totals; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Move Variation Description | |
// Paste in functions.php | |
add_action('wp_footer', 'ec_child_modify_wc_variation_desc_position'); | |
function ec_child_modify_wc_variation_desc_position() { | |
?> | |
<script> | |
(function($) { | |
$(document).on('found_variation', function() { | |
var desc = $('.woocommerce-variation.single_variation').find( | |
'.woocommerce-variation-description').html(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&__select{ | |
position: relative; | |
select{ | |
font-family: $reg; | |
color: $black; | |
border: 1px solid #ccc; | |
padding: 6px 11px; | |
appearance: none; | |
padding-right: 28px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ajax добавление товара в корзину | |
function addToCartAjax(){ | |
$('.single_add_to_cart_button').click(function(e){ | |
e.preventDefault(); | |
var product_id = $(this).val(); | |
var variation_id = $('input[name="variation_id"]').val(); | |
var quantity = $('input[name="quantity"]').val(); | |
var ajax_url = "/wp-admin/admin-ajax.php"; | |
$.ajax({ | |
url: ajax_url, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Function Goal Yandex Metrika | |
function checkGoal(nameGoal){ | |
setTimeout(function(){ | |
var id = Ya.Metrika.counters()[0].id; | |
window['yaCounter'+ id].reachGoal(nameGoal); | |
// console.log(id); | |
}, 100) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Отформатировать телефонный номер. | |
* | |
* Для мобильных код отбивается пробелами, для домашних — скобками. | |
* | |
* Грамотно обрабатываются только русские номера, | |
* для остальных функция пытается отформатировать более-менее нормально. | |
* | |
* Для отбивания цифр используются не просто дефисы, а специальные цифровые чёрточки, не хухры. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Простой прокси-сервер на PHP для изучения и модификации данных, | |
* передаваемых между браузером и сторонним сервером. | |
* | |
* Запуск: | |
* | |
* указать URL сайта в $base | |
* php -S 127.0.0.1:9001 proxy.php | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Поддержка миниатюр | |
*/ | |
add_theme_support('post-thumbnails'); | |
/** | |
* Подключение скриптов |