jontasc
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontend Reset Password] Password link not resetting passwordI’m having this same issue but not using WPForms. Any thoughts?
Forum: Plugins
In reply to: [Date and Time Picker Field] Broken after latest ACF Pro versionThere is a fix for this in github that has not been merged into the plugin:
https://github.com/soderlind/acf-field-date-time-picker/pull/102
Forum: Plugins
In reply to: [Date and Time Picker Field] DateTimepicker on Repeater Field not workingThere is a fix for this in github that has not been merged into the plugin:
https://github.com/soderlind/acf-field-date-time-picker/pull/102
Would you accept patches to the code? I’m thinking of adding event thumbnail support since I have a client who requested it.
If I end up doing this I’m happy to send you the changeset if you want it.
Jon
Oh ok, didn’t realize you had just committed a fix (thought you were referring to Version: 3.3.2).
Thanks for your help!
Jon
Thanks for the response!
I’m using the most recent version:
Version: 3.3.2
Jon
BTW, I looked at the code and the issue is an infinite loop on lin 29 of eme_recurrence.php
I think it is because I had a one day event which started on the same day it ended, and then tried to make it recur. Anyway, I hacked in a quick fix with:
`$i = 0;
while (date("d-M-Y", $cycle_date) != date('d-M-Y', $end_date + $aDay) && ++$i < 500) {
Probably not an optimal solution but it worked for my purposes.
Jon
Forum: Plugins
In reply to: ‘Facebook like’ tagging systemHello,
I’m the author of this plugin–I just wanted to give you a timeframe. I hope to have everything working in 2.8 in the next month or so.
I’ve got many ideas for new options/configurations, but if you’ve got any suggestions I’d love to hear them.
I also plan to see if I can do it using the CSS method linked to above (thanks for that link adnanoner, I hadn’t seen it before. Right now my code is very JS heavy and most of time I spent on the first version was browser compatibility.
I’ll keep you posted..
Jon
Forum: Fixing WordPress
In reply to: Exclude from posts?try:
if($pagekids && is_page()) {}I’m not completely following your problem, but it seems like it could be solved with conditional tags.