Hi! In Customizr (version less than 3.10), the title displayed at the bottom of the Fancybox popin is the post or page title instead of the image title. To fix this, here’s a quick javascript snippet that displays the image title (or the alt field if there’s no title) […]
Function: WordPress functions
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’; }
Update : the Customiz’it button has been removed since v3.1.12 of the theme Howdy developer! Even if I have tried to style them as good as I could :-?, some of you might be bothered by the help and customiz’it buttons in the top admin bar. Or may be you […]
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 […]
Howdy, Here’s a simple recipe to change the featured pages block position in Customizr, we two lines of code! Like for the slider positioning, we will : 1 find the method controlling the featured pages block 2 identify the wanted hook to place the block 3 write the code in functions.php […]
Hi, Today I am going to show you how to simply use a Google Font in Customizr without any plugin, and guess what : I takes 5 mins. This will be done in 3 simple steps : 1 Grab the Google Font 2 Edit your functions.php file 3 Edit […]
Note: This snippet is not needed anymore, just go through Appearance -> Customize -> Main content -> Post/Page Navigation and set up the navigation block visibility to suit your needs 😉 Hi, In case you need to get rid of the post navigation block of links at the bottom of […]
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 […]
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 […]
Customizr has been built to be easily customizable 😉 not only for designers but also for developers. There are two types of filters in Customizr : The value and boolean filters : those filters are used in the core to get a contextual information for example : ‘__is_home_empty’ The front-end […]
If you need to remove date, authors and tags, categories buttons below the post titles, here are two useful code snippet Where to copy/paste this code? This php code requires you to use a Child Theme. Everything you need to know about creating a child theme with Customizr here. 1) […]
Howdy Customizr developer, The following is a quick snippet that will expand (meaning show the full content instead of the excerpt) the last published post of a category list. As usual, I will try to show you the safest way to code this with the use of a child theme […]