ads
3 months ago
groups
1 week ago
metaboxes
1 year ago
placements
2 months ago
screens
3 months ago
settings
1 year ago
support
2 months ago
tables
1 week ago
tools
1 week ago
upgrades
1 year ago
widgets
1 week ago
bulk-edit.php
3 months ago
feedback-disable.php
1 year ago
header-tabs.php
3 months ago
header.php
3 months ago
index.php
2 years ago
manual-link.php
1 year ago
page-bulk-edit.php
1 year ago
page-quick-edit.php
1 year ago
quick-edit.php
2 months ago
screen-options.php
3 months ago
table-views-list.php
3 months ago
welcome-box.php
1 year ago
welcome-box.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Welcome box. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <div id="welcome" class="postbox position-full" style="background-image:url('<?php echo esc_url( ADVADS_BASE_URL . '/admin/assets/img/welcome/banner-pattern.svg' ); ?>')" xmlns="http://www.w3.org/1999/html"> |
| 11 | <div> |
| 12 | <div> |
| 13 | <span id="subhead"><?php esc_html_e( 'How to get started', 'advanced-ads' ); ?></span> |
| 14 | <span id="head"><?php esc_html_e( 'Welcome to Advanced Ads', 'advanced-ads' ); ?></span> |
| 15 | <p> |
| 16 | <?php esc_html_e( 'Thank you for choosing the best ad management plugin for WordPress.', 'advanced-ads' ); ?> |
| 17 | </p> |
| 18 | <p> |
| 19 | <?php esc_html_e( 'Get started quickly with our setup wizard to ensure optimal ad performance. Advanced Ads empowers you to create, target, and analyze your ads like never before.', 'advanced-ads' ); ?> |
| 20 | <?php esc_html_e( "Let's unlock your advertising potential and gain your income.", 'advanced-ads' ); ?> |
| 21 | </p> |
| 22 | <div id="cta"> |
| 23 | <span><a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-onboarding' ) ); ?>" id="launch-wizard"><?php esc_html_e( 'Launch the Setup Wizard', 'advanced-ads' ); ?></a></span> |
| 24 | <span><a href="https://wpadvancedads.com/manual/first-ad/" id="first-step" target="_blank"><?php esc_html_e( 'Read the First Steps', 'advanced-ads' ); ?></a></span> |
| 25 | </div> |
| 26 | </div> |
| 27 | <div> |
| 28 | <a href="https://www.youtube.com/watch?v=nfybYz8ayXQ" id="welcome-thumbnail" target="_blank"> |
| 29 | <img alt="" src="<?php echo esc_url( plugin_dir_url( ADVADS_FILE ) . '/admin/assets/img/welcome/video-thumbnail.jpg' ); ?>"/> |
| 30 | </a> |
| 31 | </div> |
| 32 | </div> |
| 33 | <span id="dismiss-welcome"> |
| 34 | <i class="dashicons dashicons-dismiss"></i> |
| 35 | </span> |
| 36 | </div> |
| 37 |