Skip to content

Instantly share code, notes, and snippets.

@VasylKyryliuk
VasylKyryliuk / Дія при кліку по любому місці
Created September 1, 2017 15:51
Дія при кліку по любому місці
$(document).click(function(e){
if ($(e.target).closest("#header-search #search_mini_form").length) return;
$('#header-search #search_mini_form').removeClass('active');
e.stopPropagation();
});
АБО
@croosen
croosen / content-product.php
Last active February 5, 2018 14:42
WooCommerce - Display custom attributes on shop page - the official way ;-)
// Paste this in your file, somewhere in the loop, around the h3
<?php echo $product->sku; ?> <?php echo $product->omschrijving; ?> <?php the_title(); ?>
<?php
// Get the attributes
$attributes = $product->get_attributes();
// Start the loop
foreach ( $attributes as $attribute ) : ?>
<?php