notices.php
| 1 | <?php |
| 2 | /** |
| 3 | * array with admin notices |
| 4 | */ |
| 5 | $advanced_ads_admin_notices = array( |
| 6 | // if users updated from a previous version to 1.4.5 |
| 7 | '1.4.5' => array( |
| 8 | 'type' => 'update', |
| 9 | 'text' => 'Advanced Ads 1.4.5 changes the behavior of some display conditions. Please read this <a href="http://wpadvancedads.com/advanced-ads-1-4-5/" target="_blank">update post</a> to learn if this change should concern you.', |
| 10 | ), |
| 11 | // newsletter after activation |
| 12 | 'nl_first_steps' => array( |
| 13 | 'type' => 'subscribe', |
| 14 | 'text' => __( 'Thank you for activating <strong>Advanced Ads</strong>. Would you like to receive the first steps via email?', ADVADS_SLUG ), |
| 15 | 'confirm_text' => __( 'Yes, send it', ADVADS_SLUG ) |
| 16 | ), |
| 17 | // adsense newsletter group |
| 18 | 'nl_adsense' => array( |
| 19 | 'type' => 'subscribe', |
| 20 | 'text' => __( 'Learn more about how and <strong>how much you can earn with AdSense</strong> and Advanced Ads from my dedicated newsletter.', ADVADS_SLUG ), |
| 21 | 'confirm_text' => __( 'Subscribe me now', ADVADS_SLUG ) |
| 22 | ), |
| 23 | // if users updated from a previous version to 1.5.4 |
| 24 | '1.5.4' => array( |
| 25 | 'type' => 'update', |
| 26 | 'text' => 'With Advanced Ads 1.5.4 the handling of <strong>visitor conditions</strong> became more consistent, flexible, and hopefully easier to use too. Please read this <a href="http://wpadvancedads.com/advanced-ads-1-5-4/" target="_blank">update post</a> to learn if this change should concern you.', |
| 27 | ), |
| 28 | // if users updated from a previous version to 1.5.7 |
| 29 | '1.6' => array( |
| 30 | 'type' => 'update', |
| 31 | 'text' => 'Advanced Ads 1.6 contains important <strong>fixes for ad groups</strong>. Please read the <a href="https://wpadvancedads.com/advanced-ads-1-6/" target="_blank">update post</a>.', |
| 32 | ), |
| 33 | ); |