WPML
סטטוס
נפתר
דווח עבור
WPML Multilingual CMS 4.6.2
תוסף/ערכת עיצוב קשורים
The Events Calendar
תגיות נושא
Compatibility

סקירה כללית של התקלה

אם אתה מריץ PHP8+ ואת The Events Calendar, תראה שגיאה קריטית באירועים המתורגמים ובעמוד הארכיון שלהם:

PHP Fatal error: Uncaught TypeError: Illegal offset type in isset or empty in …/wp-content/plugins/sitepress-multilingual-cms/classes/url-handling/converter/class-wpml-url-cached-converter.php:46

פתרון עוקף

אנא צור גיבוי מלא של האתר לפני שתמשיך.


  1. פתח את הקובץ …/wp-content/plugins/the-events-calendar/src/Tribe/Integrations/WPML/Views/V2/Filters.php.

  2. חפש את שורה 188.

  3. החלף את:
    $event->permalink = apply_filters( 'wpml_permalink', $event->permalink );

    ב:
    // WPML Workaround for compsupp-6706
    $event_permalink = $event->permalink;
    
    if ( is_object($event_permalink) ) {
    	$event_permalink = (string)$event_permalink;
    }
    
    $event->permalink = apply_filters( 'wpml_permalink', $event_permalink  );

כל התקלות הידועות →