Advertisement
Aurangajeb

Hide past data from WPUF date/time field

Jul 10th, 2021 (edited)
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Direct jquery
  2. // Add this js as hidePastDate.js at your child-theme's directory (https://prnt.sc/1a1uxwd) then add call as internal JS file https://pastebin.com/edit/CPWzRGBR
  3.  jQuery(document).ready(function( $ ){
  4. // This will hide past data from WPUF date/time field
  5.   $("#wpuf-date-_EventStartDate").datepicker( //your class/id name
  6.          {
  7.             minDate: 0,
  8.            beforeShow: function() {
  9.             $(this).datepicker('option', 'maxDate');
  10.           }
  11.        });
  12. });
  13.  
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement