Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1.  
  2. function mandatory_product_fields(){
  3.   echo "<script>
  4.         document.addEventListener('DOMContentLoaded', function(event) {
  5.             if(window.location.href.includes('post-new.php?post_type=product')){
  6.                document.getElementById('post').onsubmit = function(){
  7.                  var currentThumbnailId = document.getElementById('_thumbnail_id').value;
  8.                  if(currentThumbnailId == -1){
  9.                      alert('Please set product image.');
  10.                      return false;
  11.                  }
  12.                }
  13.             }
  14.         });
  15.   </script>";  
  16. }
  17. mandatory_product_fields();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement