Thread Starter
stoffb
(@stoffb)
I get a warning message from WP_DEBUG:
Warning: Trying to access array offset on value of type int in /var/www/vhosts/fuseconference.net/httpdocs/wp-content/plugins/wp-conference-schedule/inc/schedule-output-functions.php on line 332
I believe this is a bug in the latest version, as the developer’s demo has the same issue: https://wpconferenceschedule.com/#demo
As a workaround you could use the “grid” layout for now, as it’s still working as intended.
To fix this bug change line 331 in schedule-output-functions.php
from
foreach($columns_clone as $pair) {
to
foreach($columns_clone as $pair['key'] => $pair['value']) {
(Note: It makes to code easier to use two different variables for key and value, but changing the line like this allows to leave the other lines untouched)
ping @stevejonesdev
-
This reply was modified 4 years, 4 months ago by
bzmof.
Thread Starter
stoffb
(@stoffb)
Worked a treat! Thank you so much
Thanks @bzmof, I’ll get that fix added to the plugin shortly.