You are getting this error because the function travelify_header_title added in the above plugin is already used in the virtual museum author posts plugin you are using on your site.
Please try disabling virtual museum author posts plugin.
Thanks movin.
That plugin is the one you listed above.
As a reference for the client knowing what purpose it serves, I renamed it to Virtual Museum Author Posts.
Please do not change anything in the plugin and use it initially as it is which i provided you and if it works then change it.
If it doesn’t work for then would you mind if i log in to your site and do some troubleshooting? If this is ok then could you please share me your site log in details privately by checking the option “Set as private reply” when replying to this topic?
Username is colorlibsupport
Password is fds^&*3gf9
The error still came up, and when looking at the file it was referencing, the line of code it was referencing has been highlighted in the following attached screenshot.
I saw the following code in your shared file which is conflicting with plugin code either remove this code then use the plugin or just replace this code with plugin code and do not use plugin in this case.
if ( ! function_exists( 'travelify_header_title' ) ) :
/**
* Show the title in header
*/
function travelify_header_title() {
if( is_archive() ) {
$travelify_header_title = single_cat_title( '', FALSE );
}
elseif( is_search() ) {
$travelify_header_title = __( 'Search Results', 'travelify' );
}
elseif( is_page_template() ) {
$travelify_header_title = get_the_title();
}
else {
$travelify_header_title = '';
}
return $travelify_header_title;
}
endif;