WooCommerce show your custom product attributes
How can I add a permanent attribute to product in order to always show this attribute between title and price ?
This attribute should be seen also on "best sale slider" and in every other page in which the product is showing.
This attribute should be available for every product even if the value may vary.
thanks for all help!
demo sample: http://i.imgur.com/0rcz6ml.png
Alex
This attribute should be seen also on "best sale slider" and in every other page in which the product is showing.
This attribute should be available for every product even if the value may vary.
thanks for all help!
demo sample: http://i.imgur.com/0rcz6ml.png
Alex
Comments
as far as we know, WooCommerce does not have such possibility so or it is necessary to modify existing files or you need to look for a plugin that can do things like this one.
Thanks.
I'm trying to use the "woocommerce plugin-show-attributes" but the attribute value does not appear in the page product nor the plugin slider of your theme. why?
thanks for all help!
Alex
I'm using the Be Theme, if that matters...
I tried to modify the following file theme-woocommerce.php with this function
add_action( 'woocommerce_shop_loop_item_title', 'funzione_alex' );
function funzione_alex() {
global $product;
$product_id = $product->get_id();
$attribute_slug = 'numero_capsule';
$array = wc_get_product_terms( $product_id , 'pa_' . $attribute_slug, array( 'fields' => 'names' ) );
$text = array_shift( $array );
echo '<div>' . $text . '</div>';
}
the result is not satifying because I need to show it on product page but also on the slider_plugin
title+price+attribute
Could you please help me finding a good solution?
Shoud I modify other files ? Do you know some good and relyable plug in that could do the trick?
here you'll find a screen shot of the problem:
http://i.imgur.com/RMcnGcA.png
Thanks!