public static function notice_0_0_1()
 {
     $text = sprintf(__('If your WordPress Starter display has gone to funky town, please <a href="%s">read the FAQ</a> about possible CSS fixes.', 'wordpress-starter'), 'https://nodedesk.zendesk.com/entries/23722573');
     aihr_notice_updated($text);
 }
 function aihr_notice_error($text)
 {
     aihr_notice_updated($text, 'error');
     error_log($text);
 }
 public static function notice_2_15_0()
 {
     $text = sprintf(__('If your Testimonials display has gone to funky town, please <a href="%s">read the FAQ</a> about possible fixes.', 'testimonials-widget'), esc_url('https://nodedesk.zendesk.com/hc/en-us/articles/202331821-Major-Change-for-2-15-0'));
     aihr_notice_updated($text);
 }
Exemplo n.º 4
0
 public static function notice_donate($disable_donate = null, $item_name = null)
 {
     if ($disable_donate) {
         return;
     }
     $text = sprintf(esc_html__('Please donate $5 towards ongoing free support and development of the "%1$s" plugin. %2$s'), $item_name, self::$donate_button);
     aihr_notice_updated($text);
 }