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
// 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 |
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
$(document).click(function(e){ | |
if ($(e.target).closest("#header-search #search_mini_form").length) return; | |
$('#header-search #search_mini_form').removeClass('active'); | |
e.stopPropagation(); | |
}); | |
АБО | |