$('ul.menu a').on('click', function(e){
var goto = $(this).data('anchor');
$('html,body').stop().animate({ scrollTop: $(goto).offset().top-60 }, 1000);
e.preventDefault();
});
<ul class="menu">
<li><a href="#" data-anchor="#about">О компании</a></li>
<li><a href="#" data-anchor="#features">Услуги</a></li>
<li><a href="#" data-anchor="#calculate">Онлайн расчет</a></li>
<li><a href="#" data-anchor="#faq">Ответы на вопросы</a></li>
</ul>
function sendPhone(form) {
var valid = formValidation(form);
if (valid) {
$('.valid_err').fadeOut();
$(form).find('.form-send-text').css('display','none');
jQuery.ajax({
url: "/wp-content/themes/fordox/mail/mail.php",
data:$(form).serialize(),
type: "POST",
success:function(data){
// тут записываете добавление в метрику
$("#mail-success").html(data).fadeIn();
$(form).find('.form-send-text').css('display','inline-block');
$(form).find('input[type="text"]').val('');
},
error:function (data){
$('#mail-error').html(data).fadeIn();
$(form).find('.form-send-text').css('display','inline-block');
}
});
}
}
$('a[href^="#"]').bind('click.smoothscroll',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top-{ВАШЕ ЗНАЧЕНИЕ}
}, 1000, 'swing', function () {
window.location.hash = target;
});
});
<input type="text" id="price" value="<?php echo $product->get_price_html(); ?>" disabled>
global $product;
в коде.$('#foo,#foo2,#foo3,#foo4').change(function(){
alert('Элемент foo был изменен.');
});
<?php
if ( is_single() ) {
$cats = get_the_category();
$cat = $cats[0];
} else {
$cat = get_category( get_query_var('cat') );
}
$cat_slug = $cat->slug; // ярлык рубрики
?>
$page = get_page_by_path($cat_slug );
echo get_the_content( $page );