My pages containing a calendar are also white/blank after the update to 2.1.7, whereas everything was displayed fine before.
You do not really expect everybody to go through this?!
https://wordpress.org/support/topic/white-screen-or-blank-page-with-all-in-one-event-calendar-please-read-1?replies=1
If the page is blank, i can’t know what error is. You need to see in your PHP error log what the error is.
For 2.1.7 anyway the fix could be
add to file
app/model/event-compatibility.php the following method
/**
* Returns Event instance permalink for FER compatibility.
*
* @return string Event instance permalink.
*/
public function getpermalink() {
return $this->get_runtime( 'instance_permalink' );
}
http://take.ms/4E9bg
Bernd,
Yes, unfortunately a commercial organization is indeed asking you to look into your own logs and edit PHP to make their product work.
I added the following code that was given in another thread to 2.1.8 and now my page displays as it should:
————–
at the beginning of all-in-one-event-calendar.php on line 12 add
define( ‘AI1EC_THEME_COMPATIBILITY_FER’, false );