Title: Code Snippet does not work
Last modified: November 4, 2016

---

# Code Snippet does not work

 *  Resolved [mi25](https://wordpress.org/support/users/mi25/)
 * (@mi25)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/code-snippet-does-not-work/)
 * Hello,
 * I tried to use this code snippet: [http://presscustomizr.com/support-forums/topic/reposition-tagline/](http://presscustomizr.com/support-forums/topic/reposition-tagline/)
 * But I can not manage to get it work. I think it has to to with the changes that
   were made in one of the last updates.

Viewing 1 replies (of 1 total)

 *  [Menaka S.](https://wordpress.org/support/users/menakas/)
 * (@menakas)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/code-snippet-does-not-work/#post-8404161)
 * Hi,
    Change the code to be added to functions.php to the below one.
 *     ```
       add_action('wp_head', 'move_tagline_below_logo');
       function move_tagline_below_logo(){
   
         if ( ! method_exists('CZR_header_main', 'czr_fn_tagline_display') )
           return;
         remove_action('__navbar', array(CZR_header_main::$instance, 'czr_fn_tagline_display'), is_rtl() ? 10 : 20 );
         add_action('__after_logo', array(CZR_header_main::$instance, 'czr_fn_tagline_display') );
   
         add_filter('tc_tagline_class', 'span7_to_12');
         function span7_to_12( $_class){
           return str_replace('span7', 'span12', $_class);
         }  
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Code Snippet does not work’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Menaka S.](https://wordpress.org/support/users/menakas/)
 * Last activity: [9 years, 7 months ago](https://wordpress.org/support/topic/code-snippet-does-not-work/#post-8404161)
 * Status: resolved