my client is using EventOn. We need to sperate multiple calenders. The problem starts when i add 10 Eventon Shortcodes / Calenders. Its just loads forever.
Hi, Im Using Elementor and this seems to cause the Problem.
Debug.log:
[25-Jan-2024 14:42:58 UTC] PHP Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in /home/ludovico/web/ludovico.at/public_html/wp-content/plugins/elementor/includes/utils.php on line 727
Last Line ist 727
public static function change_submenu_first_item_label( $menu_slug, $new_label ) {
global $submenu;
if ( isset( $submenu[ $menu_slug ] ) ) {
// @codingStandardsIgnoreStart
$submenu[ $menu_slug ][0][0] = $new_label;
// @codingStandardsIgnoreEnd
}
}
/**
* Validate an HTML tag against a safe allowed list.
*
* @param string $tag
*
* @return string
*/
public static function validate_html_tag( $tag ) {
return in_array( strtolower( $tag ), self::ALLOWED_HTML_WRAPPER_TAGS ) ? $tag : 'div';
}
The memory is set on 512 at server level and in the wp-config.
[30-Jan-2024 12:44:57 UTC] PHP Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in /home/REDACTED/web/REDACTED/public_html/wp-content/plugins/elementor/includes/utils.php on line 727
And on line 727 in utils you have:
public static function validate_html_tag( $tag ) {
return in_array( strtolower( $tag ), self::ALLOWED_HTML_WRAPPER_TAGS ) ? $tag : 'div';
}
so it seems t opass NULL on the eleventh shortcode?