Important: You can set an SVG icon via the Customizer and it will display on the site using an img…
If you are using the Logo Icon option in the customizer but want a different output you can easily hook…
By default the Total theme uses the default header logo setup in the Customizer for the sticky header on ALL…
// IMPORTANT - If you are using WPML you can change your logo via the string translation function // This…
function my_custom_header_text() { ?> Some Text, could be anything though <?php } add_action( 'wpex_hook_site_logo_inner', 'my_custom_header_text', 40 );
function myprefix_remove_http_from_logo_url( $url ) { if ( $url ) { $disallowed = array( 'http:', 'https:' ); foreach( $disallowed as $d…
add_action( 'init', function() { remove_action( 'wpex_hook_header_inner', 'wpex_header_logo' ); } );
This will add an extra logo to your header which will show up at the mobile menu breakpoint while hiding…
function myprefix_alter_header_five_split_offset( $array ) { $array['headerFiveSplitOffset'] = 1; // 1 is default increase to move logo to the left return…
/* Center Logo For Mobile Devices (adjust max-width accordingly) */ @media only screen and (max-width: 959px) { #site-header #site-logo {…
// Alter the logo alt and title attribute function my_logo_title() { return 'MY CUSTOM TITLE'; } add_filter( 'wpex_logo_title', 'my_logo_title' );
// Custom Logo add_filter( 'wpex_header_logo_img_url', function( $logo ) { // Change image for your front page if ( is_front_page() )…
By default the theme logo will always link to the homepage. The following snippet shows how you can change the…