bcorchiolo
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Case Insensitive SearchPerfect, thank you so much!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Case Insensitive SearchYes, it appears that there is some js in the footer. Is there an easier way to do this?
if(id_num == ‘el’){
jQuery(‘.tablepress tfoot tr .column-2 input’).val(‘<?php echo $_GET[‘OrderNumber’]; ?>’);
jQuery(‘.tablepress tfoot tr .column-2 input’).keyup();
} else {
jQuery(‘.tablepress tfoot tr .column-5 input’).val(‘<?php echo $_GET[‘OrderNumber’]; ?>’);
jQuery(‘.tablepress tfoot tr .column-5 input’).keyup();
}jQuery(‘.loader’).hide();
//var poList = [];
jQuery(‘.tablepress tbody tr’).each(function(index){
//poList.push(jQuery(this).find(“.column-5”).val());
if(id_num == ‘el’){
var tableValue = jQuery(this).find(“.column-2”).html();
}else{
var tableValue = jQuery(this).find(“.column-5”).html();
}tableValue = tableValue.toString();
orderNum = orderNum.toString();if(tableValue.trim() === orderNum.trim()){
jQuery(this).css(‘display’, ‘table-row’);
} else {
jQuery(this).remove();
}Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Case Insensitive SearchI inherited this site, so I’m working my way through it. You enter a term into the field and you then the page you end up on another template page with
<?php echo do_shortcode(‘[table id=8 datatables_columnfilter=true /]’); ?>
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Case Insensitive SearchI am using [table id=8 datatables_columnfilter=true /] filter_case_sensitive=false doesn’t seem to change the results.
Thanks