/**
      * hook : __after_carousel_inner
      * @since v3.4+
      */
     function tc_maybe_display_dismiss_notice()
     {
         if (!TC_placeholders::tc_is_slider_notice_on()) {
             return;
         }
         $_customizer_lnk = TC_utils::tc_get_customizer_url(array('section' => 'frontpage_sec'));
         ?>
 <div class="tc-placeholder-wrap tc-slider-notice">
   <?php 
         printf('<p><strong>%1$s</strong></p>', sprintf(__("Select your own slider %s, or %s (you'll be able to add one back later).", "customizr"), sprintf('<a href="%3$s" title="%1$s">%2$s</a>', __("Select your own slider", "customizr"), __("now", "customizr"), $_customizer_lnk), sprintf('<a href="#" class="tc-inline-remove" title="%1$s">%2$s</a>', __("Remove the home page slider", "customizr"), __("remove this demo slider", "customizr"))));
         printf('<a class="tc-dismiss-notice" href="#" title="%1$s">%1$s x</a>', __('dismiss notice', 'customizr'));
         ?>
 </div>
 <?php 
     }