Use this function in your child theme’s functions.php to change the default link on your logo to another, custom link. Just replace http://new_link with the address you want your logo to point to: add_filter(‘tc_logo_link_url’, ‘change_site_main_link’); function change_site_main_link($output) { return ‘http://new_link’; }
Target: Header
Howdy developer! I have been asked a few days ago in the forum how to add a Facebook like button next to the social icons. This is actually very easy to do with the Customizr hook API and you’ll find the necessary code to copy/paste below. Grab the Facebook […]
Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme […]
Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme […]
Howdy, Here’s a quick recipe to change the slider position in Customizr (and Customizr-Pro), with only two lines of code! By default the slider is hooked on the ‘__after_header’ hook (located in header.php template) in Customizr. To move the slider to another position in your website, you need to unhook from […]
Where to copy/paste this code? NoteSince Customizr 3.3.1 (Customizr-Pro 1.0.12), because of new wp themes guidelines, you cannot use single (double) quotes in the Custom CSS in customizer. Use a Child Theme. The simplest way is to use the Custom CSS section of the customizer option screen. If you have […]
Howdy developer! The following is a quick and easy way to add a link in your tagline in the Customizr theme. We are going to use the ‘tc_tagline_display’ filter to do so. (check how to locate a filter in Customizr) Copy and paste the following code in the functions.php file of […]
Howdy Customizr designr! Here’s a quick tip to simply add content before and after your text logo with CSS only. We use the CSS pseudo classes ::before and ::after to do that. Important: in this example double quotes are escaped with ‘\’ to use the code in the custom css section. […]
Howdy Customizr developer! A clean and simple solution to display a block of content right below the header is to add an action to the ‘__after_header’ hook (located in the header.php template of the Customizr theme). In the functions.php file of your child theme, you can write this kind of […]
Customizr introduced built-in feature changes in v3.3. Go to Customize>Header>Design and layout. Uncheck the box Display menu in a box. 3.1/3.2 code Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in […]
This code does work in 3.3. But not one of my favourites! I prefer to remove the Navbar Box and make adjustments. See this Snippet. Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations […]
Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme […]