diff --git a/helpers.php b/helpers.php
index 10ce9f64..40b77ff8 100644
--- a/helpers.php
+++ b/helpers.php
@@ -181,7 +181,7 @@ if ( ! function_exists( 'sp_data_table' ) ) {
if ( !is_array( $data ) )
$data = array();
?>
-
+
diff --git a/sportspress-admin.js b/sportspress-admin.js
index 5f51af06..c0d7f2a8 100644
--- a/sportspress-admin.js
+++ b/sportspress-admin.js
@@ -20,6 +20,11 @@ jQuery(document).ready(function($){
// Activate tab filters
$('.sp-tab-panel').siblings('.sp-tab-select').find('select').change();
+ // Stats table checkboxes
+ $('.sp-stats-table tr input[type=checkbox]').change(function() {
+ $(this).closest('tr').find('input[type=text], input[type=number]').prop('readonly', $(this).prop('checked'));
+ })
+
// Change title
$('.sp-title-generator select').change(function() {
title = $('.sp-title-generator select[value!=0]').map(function(){