//Подключение Jquery для SLICK.JS
add_action( 'wp_enqueue_scripts', 'my_scripts_method' );
function my_scripts_method() {
// отменяем зарегистрированный jQuery
// вместо "jquery-core", можно вписать "jquery", тогда будет отменен еще и jquery-migrate
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
Last updated: 35 mins ago
.cart-contents:before {
display: inline-block;
content: '';
height: 22px;
width: 25px;
float: left;
background: url(img/cart-icon.png) no-repeat;
background-size: contain;
margin: 1px 10px 0 -40px;
position: absolute;
transition: all 0.25s;
}
.site-header-cart:hover .cart-contents:before {
margin: 1px 10px 0 -156px;
}
Можно попробовать через товары сделать, чтоб при покупке человек писал текст в заметку(или через кастомные поля), а потом модератор публиковал.