Logo does not load
-
Hello, my logo simply does not load. I have no idea whats going on.
These are the only changes i made in ‘child’:
/* Theme Name: custmizr-child Theme URI: xxxxxx Description: My description Author: Me Author URI: xxx Template: customizr Version: 1.0.0 */ @import url("../customizr/style.css"); .format-icon:before { speak: none; text-transform: none; -webkit-font-smoothing: antialiased; padding-right: 10px; opacity: 0.2; position: relative; top: 8px; display: none; font: normal normal 1.2em/1 'entypo'; } /* hide Tagline, if not needed */ .navbar-wrapper .navbar h2 { display: none; }
aannndddddd functions
<?php if (!function_exists('add_decoration')) { function add_decoration() { // do something } } add_action ( 'wp_head', 'remove_single_post_nav_links'); function remove_single_post_nav_links() { //we only want to remove those nav links for a sinlge post and not for the list of posts if ( !is_single() ) return; //this action is defined in the class-content-post_navigation.php file remove_action ( '__after_loop' , array( TC_post_navigation::$instance , 'tc_post_nav' ), 20 ); } //we hook the code on the __before_body hook, which is executed before the rendering. add_action ('__before_body' , 'remove_post_metas'); function remove_post_metas() { //we remove the original action hooked on '__post_metas'. tc_post_metas action is a method of the TC_post_metas class //We can access the instance of this class with a static property of this class that is a self instance. remove_action ( '__post_metas' , array( TC_post_metas::$instance , 'tc_post_metas' )); } ?>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
- The topic ‘Logo does not load’ is closed to new replies.