Title: TJ Hume's Replies | WordPress.org

---

# TJ Hume

  [  ](https://wordpress.org/support/users/tjhdev/)

 *   [Profile](https://wordpress.org/support/users/tjhdev/)
 *   [Topics Started](https://wordpress.org/support/users/tjhdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/tjhdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/tjhdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/tjhdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/tjhdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/tjhdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Date Picker Bug](https://wordpress.org/support/topic/date-picker-bug/)
 *  Thread Starter [TJ Hume](https://wordpress.org/support/users/tjhdev/)
 * (@tjhdev)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/date-picker-bug/#post-13620869)
 * Thanks for the update!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Date Picker Bug](https://wordpress.org/support/topic/date-picker-bug/)
 *  Thread Starter [TJ Hume](https://wordpress.org/support/users/tjhdev/)
 * (@tjhdev)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/date-picker-bug/#post-13608251)
 * No problem!
 * Setting it to m/d/Y did not resolve the issue. I added Sunday as an available
   day to test, and I still get the same error when selecting a day 1 week in the
   future. I think it worked for you because you selected Monday still, not Sunday.
 * Thanks,
    Tristan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Date Picker Bug](https://wordpress.org/support/topic/date-picker-bug/)
 *  Thread Starter [TJ Hume](https://wordpress.org/support/users/tjhdev/)
 * (@tjhdev)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/date-picker-bug/#post-13598852)
 * Yes, it does seem to happen with other formats. Here is the export: [https://drive.google.com/file/d/1j5xeBUMAWqb2ntRdieIbka3LG_orDjAb/view?usp=sharing](https://drive.google.com/file/d/1j5xeBUMAWqb2ntRdieIbka3LG_orDjAb/view?usp=sharing)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Date Picker Bug](https://wordpress.org/support/topic/date-picker-bug/)
 *  Thread Starter [TJ Hume](https://wordpress.org/support/users/tjhdev/)
 * (@tjhdev)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/date-picker-bug/#post-13592656)
 * I believe it was on m/d/y, but I tried changing it to Y-m-d and I am still getting
   the issue. Something odd I noticed – when changing the limit from 7 days to 6
   days in the future, Monday somehow becomes available even though that is only
   5 days from now (and I get the same error if picking Monday).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Date Picker Bug](https://wordpress.org/support/topic/date-picker-bug/)
 *  Thread Starter [TJ Hume](https://wordpress.org/support/users/tjhdev/)
 * (@tjhdev)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/date-picker-bug/#post-13588422)
 * Hi Kasia,
 * I think this is just because the issue only seems to occur when you order 1 week
   in advance. I think you would experience the issue if you were to wait until 
   tomorrow and then try to order on the first available Wednesday (the 4th). In
   this case, the error should occur.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Icegram Engage – Popups, Optins, CTAs & Lead Generation] Enqueue CSS and JS](https://wordpress.org/support/topic/enqueue-css-or-js/)
 *  [TJ Hume](https://wordpress.org/support/users/tjhdev/)
 * (@tjhdev)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/enqueue-css-or-js/#post-12191574)
 * Was trying to do this too. Figured out that you can deliver these scripts and
   styles through your CDN with filters in your functions.php:
 *     ```
       add_filter('add_icegram_css', 'my_icegram_css');
       add_filter('add_icegram_script', 'my_icegram_scripts');
   
       function my_icegram_scripts($scripts){
       	$siteURL = "yoursite.com";
       	$cdnURL = "yourcdn.com";
       	$count = count($scripts);
       	for ($x = 0; $x < $count; $x++) {
       		$value = $scripts[$x];
       		$value = str_replace($siteURL,$cdnURL,$value);
       		$scripts[$x] = $value;
       	}
       	return $scripts;
       }
   
       function my_icegram_css($css){
       	$siteURL = "yoursite.com";
       	$cdnURL = "yourcdn.com";
       	$count = count($css);
       	for ($x = 0; $x < $count; $x++) {
       		$value = $css[$x];
       		$value = str_replace($siteURL,$cdnURL,$value);
       		$css[$x] = $value;
       	}
       	return $css;
       }
       ```
   

Viewing 6 replies - 1 through 6 (of 6 total)