• Would it be possible to have “Sync quantity” enabled by default? Would be great to be able to change default state of this (and maybe also the other options) from the plugin options, or with filters in child theme/snippets.

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

    (@wpclever)

    Hi @codehouseno

    Please try to add the below code to current-theme (or child-theme)/functions.php

    add_action( 'admin_footer', 'woobt_custom_js' );
    function woobt_custom_js() {
    	?>
        <script type="text/javascript">
          jQuery(document).ready(function($) {
            $('#woobt_sync_qty').prop('checked', true).trigger('change');
          });
        </script>
    	<?php
    }

    You can do the same will other options.

Viewing 1 replies (of 1 total)
  • The topic ‘Sync quantity enabled by default’ is closed to new replies.