adblock.php
2 years ago
error.php
1 year ago
info.php
1 year ago
inline.php
1 year ago
plugin_error.php
4 years ago
promo.php
1 year ago
starter-setup-success.php
1 year ago
subscribe.php
1 year ago
adblock.php
14 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The view to render the option. |
| 4 | * |
| 5 | * @var string $ad_blocker_notice_id Randomised ad blocker id. |
| 6 | */ |
| 7 | ?> |
| 8 | <div id="<?php echo esc_attr( $ad_blocker_notice_id ); ?>" class="message error update-message notice notice-alt notice-error" style="display: none;"> |
| 9 | <p> |
| 10 | <?php echo wp_kses_post( __( 'Please disable your <strong>AdBlocker</strong>. Otherwise, the features of Advanced Ads and the layout are broken.', 'advanced-ads' ) ); ?> |
| 11 | <a href="https://wpadvancedads.com/manual/ad-blockers/?utm_source=advanced-ads&utm_medium=link&utm_campaign=adblock-enabled#How_do_you_know_if_you_are_using_an_ad_blocker" target="_blank" class="advads-manual-link"><?php esc_html_e( 'Manual', 'advanced-ads' ); ?></a> |
| 12 | </p> |
| 13 | </div> |
| 14 |