Hi @kattlegaspi
Please add below snippet (How to add custom code?):
add_action( 'wp_footer', 'woovr_move_radio_button' );
function woovr_move_radio_button() {
?>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.woovr-variation-selector').each(function() {
var $this = jQuery(this);
var $this_variation = $this.closest('.woovr-variation');
$this.css('display', 'inline-block').prependTo($this_variation.find('.woovr-variation-name'));
});
});
</script>
<?php
}
And the result https://www.screencast.com/t/DmJWKkcVF3m