incredimike
Forum Replies Created
-
You are right. I thought this plugin was https://github.com/mdsimpson/contact-form-7-to-database-extension/
Are these 2 plugins similar? Yours looks actively maintained!
Forum: Plugins
In reply to: [Advanced Custom Fields: reCAPTCHA Field] Post not publishingFYI I upgraded to ACF Pro 5.3.0 and the problem went away.
Forum: Plugins
In reply to: [User Profile Meta Manager] Activated, but nothing for "Settings"totally hijacked this thread. started a new thread instead.
Forum: Plugins
In reply to: [WP FullCalendar] Table row heights are unusually large….Figured it out. In my case the problem was with CSS transitions.
The calendar JS resizes the rows for each week based upon how many events exist in that week. Long story short, my dumb CSS transitions were causing the event anchor tags to be very tall (1 character per new line), then transitioned into the approprite size. Before the transition occured, FullCalendar did its positioning and resizing calculations.
Since my event tags were very tall at the time of calculations, it threw everything off.
To fix, turn off CSS transitions within FullCalendar / for event calendar event A tags.
Forum: Plugins
In reply to: [WP FullCalendar] Table row heights are unusually large….I have having a similar issue. From the limited debugging I’ve done without the main.js source, I see an unusually large “height” style being applied to the first div in the first day of each week when that week contains events. The more events in that week, the larger the height (roughly double?)
The offending element is this:
#wpfc-calendar .fc-first .fc-day-content > div
Unfortunately, the miscalculation of height also seems to affect where the absolutely-positioned events are placed, so a simple CSS hack won’t do the trick.
Author, help!