TJ Hume
Forum Replies Created
-
Thanks for the update!
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,
TristanYes, it does seem to happen with other formats. Here is the export: https://drive.google.com/file/d/1j5xeBUMAWqb2ntRdieIbka3LG_orDjAb/view?usp=sharing
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).
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
In reply to: [Icegram Engage – Popups, Optins, CTAs & Lead Generation] Enqueue CSS and JSWas 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; }