Notice: Since Customizr v3.4.6 and Customizr-Pro 1.2.0 a new set of options has been introduced in the slides editing screen. You will be able to set a custom link url for your image (and button), open it in a new page and link the whole slide. The caption, though, will […]
Hook: WordPress hooks
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) […]
Did you ever wanted to distinguish your newest post in front of the other posts in the list ? This snippet will allow you to make your latest post look different (in any category) and to dinstinct itself from the rest. Where to copy/paste this code? The best way to customize […]
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 […]
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 […]
Wordpress sets a default limit of 55 characters for Excerpts. You can override this limit by adding this code to your functions.php file in a child theme Where to copy/paste this code? We strongly recommend you create a child theme and add this to the Child Theme functions.php. Download a […]
For Customizr-Pro and Hueman-Pro users: You can paste your Google Analytics tracking code in a specific field designed for that. Please read the following documenation: Customizr-Pro Hueman-Pro If you’re not a developer, you can refer to this complete documentation on setting up your Google Analytics tracking code with a plugin. Here’s […]
To do that, you need : 1) The linked page ID (easy to find in the url when editing the page in admin) 2) the external page URL Copy and paste the code below in your functions.php add_action( ‘wp_head’, ‘my_redirection’ ); function my_redirection(){ global $wp_query; //we get the current object […]
Like often in WordPress, the simpliest way to alter the core is to…dive in it and look for hooks! In the file wp-includes/default-widgets.php there is a filter hook called ‘widget_title’. That’s the one we need. It requires 3 parameters to work : the title we want to return, the instance […]
If you want to display the recent posts of the current category archive, there is a simple solution. You have to filter the query of the WordPress recent post widget. (one of the built-in widgets). The filter takes one parameter : the query arguments array. Here is the workflow : […]