Cannot figure this out and don't know how I would modify the code to get this error to stop showing at the top of wp-admin.
Cannot figure this out and don't know how I would modify the code to get this error to stop showing at the top of wp-admin.
Hello,
ok try todo this:
open this file ..booking/lib/wpdev-booking-class.php
at line: 155
find this code:
// Merge the two arrays together so our widget is at the beginning
$sorted_dashboard = array_merge($example_widget_backup, $normal_dashboard);
// Save the sorted array back into the original metaboxes
$wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
and modify it to this:
// Merge the two arrays together so our widget is at the beginning
// $sorted_dashboard = array_merge($example_widget_backup, $normal_dashboard);
// Save the sorted array back into the original metaboxes
// $wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
then try to test again.
You must log in to post.