Hi Harry,
I just tired making a bundle product on my site. https://look.ir/uRLec
1- Is there any chance to have Variation Swatches for the bundle products? I see it has the default Woocommerce listing instead of swatches.
2- In the bundle, I have a variable product. I have a color which is navy-blue and is translated in my attributes, but I see the bundle is using the slug of the color, instead of the name of the color.
http://prntscr.com/mr71ob
http://prntscr.com/mr72q3
3- you set the default photo size to 70x70 but I see this will crop the image. I realized 70x90 will be great without cropping. So you may want to change the default value.
4- I think the select field in the bundle needs some css fix. the select width is too small. so the attributes and arrows are so close together and in the RTL, the arrows should be on the left and the attribute should be on the right.
5- I have a function which will hide the price for out of stock products. And this is so logical that you hide the price of a product which is over and you may come back via new price. But I see this is not working for the bundle.
Is there any chance to apply that to the bundle too?
/* hiding price for out of stock products */
add_filter( "woocommerce_variable_sale_price_html", "theanand_remove_prices", 10, 2 );
add_filter( "woocommerce_variable_price_html", "theanand_remove_prices", 10, 2 );
add_filter( "woocommerce_get_price_html", "theanand_remove_prices", 10, 2 );
function theanand_remove_prices( $price, $product ) {
if ( ! $product->is_in_stock()) {
$price = "";
}
return $price;
}
6- In RTL, the currency symbol comes after the price on the left, but in the bundle it’s on the right and so close to the price.
http://prntscr.com/mr77aw
7- I see an extra space in here: http://prntscr.com/mr7aan
Kind regards Harry
Rahim Vaziri
CEO & Founder at Look.ir