Fatal error: Uncaught Error: [] operator not supported for strings
-
Please pay attention to “woocommerce-video-tab.php” line 223
Before:
if(empty($tab_data)){ $tab_data[] = array('title' => '', 'hide_title' => '', 'video' => ''); }
After:
if(empty($tab_data)){ $tab_data = array(); $tab_data[] = array('title' => '', 'hide_title' => '', 'video' => ''); }
P.S. If you don’t have time to manage this plugin, please let me try to manage it.
- The topic ‘Fatal error: Uncaught Error: [] operator not supported for strings’ is closed to new replies.