Created
June 10, 2022 12:49
-
-
Save dislokacia/1b1b171b4c0f3cfa021c948ba82bbee2 to your computer and use it in GitHub Desktop.
Revisions
-
dislokacia created this gist
Jun 10, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ jQuery(document).ready(function( $ ){ $( document ).ajaxComplete(function() { if (!Cookies.get('woocommerce_items_in_cart')) { $('.empty_message').show(); } else { $('.empty_message').hide(); } }); if (!Cookies.get('woocommerce_items_in_cart')) { $('.empty_message').show(); } }); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ .empty_message { display: none; }