Last active
August 29, 2015 14:11
-
-
Save guilhermemarconi/3d957580d8e4f14f96c0 to your computer and use it in GitHub Desktop.
[WooCommerce] Lista variações de COR do produto e altera a imagem do mesmo de acordo com a variação
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
<?php | |
if ( $product->is_type( 'variable' ) ) : | |
$url = get_the_permalink(); | |
$available_variations = $product->get_available_variations(); | |
$count = count( $available_variations ); | |
echo '<ul class="colors">'; | |
for ( $i=0; $i < $count; $i++ ) { | |
$var_color_name = $available_variations[$i]['attributes']['attribute_pa_cor']; | |
$var_img = $available_variations[$i]['image_src']; | |
echo '<li>'; | |
/* | |
* Link direto para a variação do produto usando o plugin WooCommerce Direct Variation Link | |
* https://wordpress.org/plugins/woocommerce-direct-variation-link/ | |
*/ | |
echo '<span data-href="' . $url . '?cor=' . $var_color_name . '" data-img="' . $var_img . '" class="color ' . $var_color_name . '">' . $var_color_name . '</span>'; | |
echo '</li>'; | |
} | |
echo '</ul>'; | |
?> | |
<script> | |
(function($) { | |
var colorsList = $('.colors'), | |
colorVar = colorsList.find('.color'); | |
$(function() { | |
colorVar.hover(function() { | |
var img = $(this).data('img'), | |
productThumb = $(this).parent().parent().siblings('.wp-post-image'); | |
productThumb.attr('src', img); | |
}); | |
}); | |
})(jQuery); | |
</script> | |
<?php | |
// exibe array com informações das variações disponíveis | |
// echo '<pre>'; | |
// print_r( $available_variations ); | |
// echo '</pre>'; | |
endif; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment