footer.php
1 year ago
header.php
1 year ago
newsletter.php
1 year ago
performing-ads.php
1 year ago
rss.php
1 year ago
newsletter.php
52 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render newsletter section |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | */ |
| 7 | |
| 8 | use AdvancedAds\Utilities\Conditional; |
| 9 | |
| 10 | ?> |
| 11 | <div class="advads-widget-wrapper"> |
| 12 | <div class="section-title"> |
| 13 | <h3><?php esc_attr_e( 'Newsletter & Email Courses', 'advanced-ads' ); ?></h3> |
| 14 | </div> |
| 15 | <p> |
| 16 | <?php |
| 17 | printf( |
| 18 | /* translators: %1$s 'free' (in bold), %2$s '2 free add-ons' (in bold) */ |
| 19 | esc_html__( |
| 20 | 'Join our newsletter and take our %1$s ad monetization email courses. Get tutorials, optimization tips, and %2$s!', |
| 21 | 'advanced-ads' |
| 22 | ), |
| 23 | '<strong>' . esc_html__( 'free', 'advanced-ads' ) . '</strong>', |
| 24 | '<strong>' . esc_html__( '2 free add-ons', 'advanced-ads' ) . '</strong>' |
| 25 | ); |
| 26 | ?> |
| 27 | </p> |
| 28 | |
| 29 | <div class="advads-widget-buttons space-y-4"> |
| 30 | <?php if ( Conditional::user_can_subscribe( 'nl_first_steps' ) ) : ?> |
| 31 | <div class="advads-admin-notice" data-notice="nl_first_steps"> |
| 32 | <p class="m-0"> |
| 33 | <button type="button" class="button-primary advads-notices-button-subscribe with-icon" data-notice="nl_first_steps"> |
| 34 | <span class="dashicons dashicons-email-alt"></span> |
| 35 | <?php esc_html_e( '5-part First Steps series', 'advanced-ads' ); ?> |
| 36 | </button> |
| 37 | </p> |
| 38 | </div> |
| 39 | <?php endif; ?> |
| 40 | <?php if ( Conditional::user_can_subscribe( 'nl_adsense' ) ) : ?> |
| 41 | <div class="advads-admin-notice" data-notice="nl_adsense"> |
| 42 | <p class="m-0"> |
| 43 | <button type="button" class="button-primary advads-notices-button-subscribe with-icon" data-notice="nl_adsense"> |
| 44 | <span class="dashicons dashicons-email-alt"></span> |
| 45 | <?php esc_html_e( '8-part Google AdSense series', 'advanced-ads' ); ?> |
| 46 | </button> |
| 47 | </p> |
| 48 | </div> |
| 49 | <?php endif; ?> |
| 50 | </div> |
| 51 | </div> |
| 52 |