Viewing 1 replies (of 1 total)
  • Plugin Author WPClever

    (@wpclever)

    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

Viewing 1 replies (of 1 total)
  • The topic ‘Placing radio button beside product name’ is closed to new replies.