- סטטוס
- פתוח
- דווח עבור
- WPML Sticky Links 1.5.4
- תגיות נושא
- Bug
סקירה כללית של התקלה
אם אתה משתמש בתוסף WPML קישורים דביקים עם PHP 8.x, תיתקל בשגיאת deprecated כגון זו:
PHP Deprecated: Automatic conversion of false to array is deprecated in .../wp-content/plugins/wpml-sticky-links/classes/class-wpml-sticky-links.php on line 19
פתרון עוקף
אנא ודא שיש לך גיבוי מלא של האתר לפני שתמשיך.
- פתח את הקובץ …/wp-content/plugins/wpml-sticky-links/classes/class-wpml-sticky-links.php.
- חפש את שורה 19.
- ממש לפני שורת קוד זו:
$this->settings['sticky_links_widgets'] = 0;
- הוסף את הבא:
if (!is_array($this->settings)){ $this->settings = array(); }