As a fundamental element of artwork, color utilizes hue, value and intensity to evoke deep emotion, transform mood and create a visual kaleidoscope of harmony or contrast.
VIVID & IMAGINATIVE
Colors
As a fundamental element of artwork, color utilizes hue, value and intensity to evoke deep emotion, transform mood and create a visual kaleidoscope of harmony or contrast.
jQuery(document).ready(function($) {
function hideEmptyWPC() {
// Find every filter item and hide it if the count is 0
$('.wpc-filter-item').each(function() {
var count = $(this).find('.wpc-term-count').text().replace(/[^0-9]/g, '');
if (count === '0') {
$(this).hide();
}
});
}
// Run on page load
hideEmptyWPC();
// Run again whenever the filter updates (AJAX)
$(document).on('wpc_after_filter_posts', function() {
hideEmptyWPC();
});
});