$(document).ready(function () {
"use strict";
+ // don't display products on the main "products page"
+ if ((window.location.href.indexOf("products-2") >= 0)){
+ $("#productsView").css("display", "none");
+ }
+ if ((window.location.href.indexOf("products-2/?michsci_category") >= 0)){
+ $("#productsView").css("display", "inherit");
+ $("#categoriesView").css("display", "none");
+ }
+
// navigate back to products page if on product page
if ((window.location.href.indexOf("products-2/?pagename") >= 0)) {
// $("#viewBtns").css("display", "none");
}
// change output view
-
if (!(window.location.href.indexOf("products-2/?pagename") >= 0)) {
$("#grid").on("click", function (e) {
document.cookie = "view=grid";
location.reload();
});
}
-
$("#categoryDropdown").change(function() {
$("#catSubmit").submit();
});
$(document).ready(function () {
"use strict";
+ // don't display products on the main "products page"
+ if ((window.location.href.indexOf("products-2") >= 0)){
+ $("#productsView").css("display", "none");
+ }
+ if ((window.location.href.indexOf("products-2/?michsci_category") >= 0)){
+ $("#productsView").css("display", "inherit");
+ $("#categoriesView").css("display", "none");
+ }
+
// navigate back to products page if on product page
if ((window.location.href.indexOf("products-2/?pagename") >= 0)) {
// $("#viewBtns").css("display", "none");
}
// change output view
-
if (!(window.location.href.indexOf("products-2/?pagename") >= 0)) {
$("#grid").on("click", function (e) {
document.cookie = "view=grid";
location.reload();
});
}
-
$("#categoryDropdown").change(function() {
$("#catSubmit").submit();
});
<div id="page-title">
<h1><?php echo get_the_title(); ?></h1>
</div>
+
<!--
<button id="list"type="button">list</button>
<button id="grid" type="button">Grid</button>