Hi grendizer,
Yes exactly there is not add_action so you need code customisation to fix it.
First you need to unhook this functions
add_action( 'cleanretina_header', 'cleanretina_headerdetails', 10 );
by and remove this action using
`remove_action(‘cleanretina_header’, ‘cleanretina_headerdetails’, 10 );
}
add_action(‘init’,’unhook_thematic_functions’); // removes the header content by using hook cleanretina_header
Now whatever you need you need to add and where you need modification replace it or remove it and add your code
add_action( ‘cleanretina_header’, ‘cleanretina_child_headerdetails’, 10 );
/**
* Shows Header Part Content
*
* Shows the site logo, title, description, searchbar, social icons etc.
*/
function cleanretina_child_headerdetails() {
// add your code under it .just only add the specific code you need. This will work for your header parts from social icons to slogan / slider.
}`
If you are still unable then you may hire a developer to fix it or better consult with a programmer.
Thank you!