1046968c by Jeff Balicki

noResultsContainer

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 2bd5e87f
......@@ -16225,6 +16225,15 @@ li.additional_information_tab {
display: none !important;
}
#noResultsContainer {
margin: auto;
margin-top: 30px;
margin-bottom: 30px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
#resources.dataTable {
width: 100% !important;
}
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -39,6 +39,9 @@ function course_list(){
echo course_card(get_the_ID());
endwhile; ?>
</div>
</div>
<div id="noResultsContainer">
<div>No results match this search.</div>
</div>
<?php endif;
wp_reset_query();
......
......@@ -35150,6 +35150,11 @@
});
console.log('updateFilterCounts');
console.log(index);
if (itemElems == 0) {
$('#msg-box').show();
} else {
$('#msg-box').hide();
}
if (index === 0) {
$("#load-more").hide();
} else {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -21,7 +21,7 @@ jQuery(document).ready(function($) {
}
});
// use value of search field to filter
var $quicksearch = $('#quicksearch').keyup(debounce(function() {
......@@ -122,6 +122,13 @@ jQuery(document).ready(function($) {
});
console.log('updateFilterCounts');
console.log(index);
if ( itemElems == 0 ) {
$('#msg-box').show();
}else{
$('#msg-box').hide();
}
if (index === 0) {
$("#load-more").hide();
......@@ -192,4 +199,8 @@ jQuery(document).ready(function($) {
loadMore(counter);
});
});
\ No newline at end of file
......
......@@ -150,3 +150,11 @@ li.additional_information_tab {
}
}
#noResultsContainer{
margin: auto;
margin-top: 30px;
margin-bottom: 30px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
\ No newline at end of file
......
......@@ -5,7 +5,7 @@
Author: Tenzing Communications
Author URI: https://tenzingbrand.com
Template: understrap
Version: 1.1.0011
Version: 1.1.0012
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......