Looking for help?
Show variation attribute with select style
If you want show variation attribute with select style follow image below.

you can add this snippet code to yourtheme/functions.php or add on your snippet code plugin
add_filter('op_product_variant',function($variation){
$variation['display'] = 'select';
return $variation;
},10,1);