Press Customizr blog

547 posts

How to display the Customizr(-Pro) vertical menu only in mobiles

Here’s a simple snippet in order to display the vertical menu only in mobiles, keeping the regular one in desktop devices: add_filter(‘tc_opt_tc_menu_style’, ‘tc_vertical_menu_in_mobiles’); function tc_vertical_menu_in_mobiles( $type ) { return wp_is_mobile() ? ‘aside’ : $type; } Where to copy/paste this code? Add it to your child-theme functions.php. Everything you need to […]

How to change the “Leave a comment” text in WordPress ?

This text can be altered with a WordPress filter hook comment_form_defaults In the following code, simply replace Custom leave a comment by your own text :   add_filter(‘comment_form_defaults’, ‘set_my_comment_title’, 20); function set_my_comment_title( $defaults ){ $defaults[‘title_reply’] = __(‘Custom leave a comment’, ‘customizr-child’); return $defaults; }

The Customizr theme is now compatible with WPML Multilingual Plugin (pro v1.2.13+, free v3.4.15+)

Release note for Customizr Pro v1.2.13 (Customizr free v3.4.15) ↓ Download Customizr Try it live in the demo → How to install Customizr ? Check this documentation page.   Compatibility with the WPML Multilingual Plugin We’ve been successfully collaborating with the WPML developers during the last weeks to ensure a full […]

contact_email

What’s new in Customizr Pro v1.2.7 (Customizr free v3.4.11)

Filter your blog posts by category You can now select specific categories to display on home or on your blog’s page. In Appareance > Customize > Content > Front Page You’ll find a detailed documentation about this feature here : http://docs.presscustomizr.com/article/144-how-to-use-the-category-filter-for-the-blog   A new email icon in the social links Full […]

Change the word HOME in the breadcrumb trail

Updated February 24, 2016: Added the option to output either some text or a Font Awesome icon. In case you want to change the default word “Home” in the breadcrumb trail, to something different, this snippet will allow to change it. To use standard characters: just paste this function into […]