What’s new ? Featured Posts : Swipe gesture supported for smartphones and tablets + full post possible In the version 3.1.3, you can now scroll your featured posts horizontally with your fingers on any touch mobile devices. Another cool new feature is the ability to display the full content […]
Press Customizr blog
We’ve published a complete documentation on how to speed up the Hueman WordPress theme with the famous W3 Total Cache free plugin. Here’s the kind of results you can achieve after applying a few simple performance settings : Read the full documentation here.
What’s new ? Structured Data Markup Version 3.1.1 (download it here) of the Hueman WordPress theme is now compatible with the Structured Data Markup used by search engines to understand your website. This is a standard Html markup annotation helping your pages to rank higher in search engine results (see this […]
Improved overall speed performances fixed : the child theme stylesheet loaded before the main one. Back to normal now. Performance improvements compare to v3.0* with the use of minified external script and stylesheet by loading only the necessary resources by grouping the stylesheets into one instead of 3 previously […]
Changelog dated April 15th 2016 = 3.0.12 April 15th 2016 = fixed : social icon default color is back to rgba(255,255,255,0.7) fixed : added back the feedburner rss feed option in customizer > Global Settings > Site Identity fixed : added back the color-footer option in customizer > Global Settings […]
By default, the latest posts list on the front page gets displayed in reverse chronological order and that is what latest posts is. Can you customize it further? Can you display random posts on the front page? Add this small bit of code to your child theme’s functions.php and you […]
The Customizr Pro and Customizr free themes have been successfully tested with WordPress 4.5. The version 4.5 of WordPress is still in beta but we’ve made sure that our themes are compatible with the latest innovations. The latest versions of the Customizr themes are fixing minor issues reported by our users. […]
If you want to change the titles of daily,monthly or yearly archives, add this to your child theme’s functions.php and modify the archive titles to suit your needs. add_filter(‘tc_time_archive_header_content’,’my_time_archive_header_content’); function my_time_archive_header_content($content) { if ( is_day() || is_month() || is_year() ) { $archive_type = is_day() ? sprintf( __( ‘My Daily Archives: […]
If you want to have the post metas of your single posts displayed before the title and not after the title, add this little bit of code to your child theme’s functions.php add_action (‘__before_body’ , ‘move_single_post_metas’); function move_single_post_metas() { //checks if we are displaying a single post. Returns false […]
Note about translations : before you start coding anything, note that the “Search” string in the search forms is a WordPress string. If this string is not translated in your language, make sure you update your WordPress language translation on WordPress Polyglots. In case you want to change […]
In the alternate thumbnails layout, the default display shows the excerpt with a […] at the end. The thumbnail and the title are linked to the post. If you want to add a “Read More” link or a “Read More” button, here is how your do it. To replace the […]
If you want the tagline to be replaced with a button similar to the demo site, all you have to do this place this code in your child theme’s functions.php and change to suit your needs. add_filter(‘tc_tagline_text’, ‘replace_tag_with_button’); function replace_tag_with_button($content){ /* Change link inside href=”” to suit your needs */ […]