display: flex
используется align-items: flex-start
, при этом все элементы будут сбиваться к верху своего контейнера.display: grid
используется align-items: start
, тут элементы будут прибиваться к верху своей ячейки. separator()
, если посмотреть исходник, принимает 3 аргумента: * @params {String} [separator=' '] string to separate number groups
* @params {String} [group_length=3] number group length
* @params {String} [suffix=''] suffix to append to number
var comma_separator_number_step = $.animateNumber.numberStepFactories.separator(' ', 3, ' руб.');
$('[id^="product"]').each(function() {
var card = $(this);
if (card.hasClass('category_2')) {
card.find('.after_price').text('Какой-то текст');
}
});
$('.category_2').each(function() {
$(this).find('.after_price').text('Какой-то текст');
});
jQuery(document).ready(function($) {
$('.click-container').click(
function() {
var $this = $(this);
var imgTitle = $this.find('div.image-title').html();
var imgDescription = $this.find('div.image-description').html();
$('.hide-title').html(imgTitle);
$('.hide-description').html(imgDescription);
});
});
<a href="https://site.ru/file.php" download>
add_filter('woocommerce_cart_shipping_method_full_label','remove_local_pickup_free_label', 10, 2);
function remove_local_pickup_free_label($full_label, $method){
$full_label = substr($full_label, 0, strpos($full_label, ':'));
return $full_label;
}
<?php if( ! empty( get_field( 'har01' ) ) ) : ?>
<tr class="tr01">
<td><img class="harimg" src="http://kosmosauto.com/wp-content/uploads/2016/02/har011.png" /> Привод:</td>
<td><?php the_field( 'har01' ); ?></td>
</tr>
<?php endif; ?>
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
location = '/file.pdf';
}, false );
</script>