This topic has 12 replies, 6 voices, and was last updated 9 years, 4 months ago by Anonymous.
Tagged: Removed logins
Viewing 13 posts - 1 through 13 (of 13 total)
Hi
I uploaded the image after carefully reading the documentation and I failed.
I visit the site and I see 5 lines of warning: illegal string offset “image”
warning: illegal string offset “repeat”
warning: illegal string offset “position”
warning: illegal string offset “color”
warning: illegal string offset “attachment”
Can you help me to correct these warning
Thank you
Find for this code in labora/css/skin.php file on line no around 75
$labora_sh_bg_properties = get_post_meta( $post->ID,'labora_subheader_img', true );
$labora_sh_bg_properties = array(
'image' => $labora_sh_bg_properties['0']['image'],
'repeat' => $labora_sh_bg_properties['0']['repeat'],
'position' => $labora_sh_bg_properties['0']['position'],
'color' => $labora_sh_bg_properties['0']['color'],
'attachment' => $labora_sh_bg_properties['0']['attachement'],
);
and replace it with the below code,
$labora_sh_bg_properties = get_post_meta( $post->ID,'labora_subheader_img', true );
if( !empty( $labora_sh_bg_properties ) ){
$labora_sh_bg_properties = array(
'image' => $labora_sh_bg_properties['0']['image'],
'repeat' => $labora_sh_bg_properties['0']['repeat'],
'position' => $labora_sh_bg_properties['0']['position'],
'color' => $labora_sh_bg_properties['0']['color'],
'attachment' => $labora_sh_bg_properties['0']['attachement'],
);
}
@HabibZakaria, @cko:
If you can provide us WP Logins to your website with URL then we can fix the issues. Make sure you set the post as private reply so that only admin can see your wp-logins.
Note: Before providing the wp-logins to any support staff, kindly please make sure you take a backup of everything including wordpress content, theme options, widgets etc.
@cko: Kindly post your question in a specified category of the theme so that it may be helpful for others too.
Please contact your hosting provider to fix the bug. please refer to below links.
https://wordpress.org/support/topic/error-warning-class-_php_incomplete_class-has-no-unserializer/
https://wordpress.org/support/topic/class-_php_incomplete_class-has-no-unserializer/
Viewing 13 posts - 1 through 13 (of 13 total)
You must be logged in to reply to this topic.