ad-list
6 months ago
conditions
3 weeks ago
notices
3 weeks ago
upgrades
1 year ago
ad-conditions-string-operators.php
5 months ago
checks.php
5 months ago
index.php
7 years ago
modal.php
5 months ago
overview-addons-line.php
3 weeks ago
overview-notice-row.php
1 year ago
overview-widget.php
1 year ago
placement-form.php
3 weeks ago
placement-injection-top.php
3 weeks ago
placement-types.php
3 weeks ago
placements-ad-label.php
1 year ago
placements-inline-css.php
1 year ago
placements-item.php
3 weeks ago
post-list-filter-dropdown.php
6 months ago
support-callout.php
3 weeks ago
support-callout.php
35 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Support callout. |
| 4 | * |
| 5 | * @package Advanced_Ads |
| 6 | * @since 1.0.0 |
| 7 | */ |
| 8 | |
| 9 | use AdvancedAds\Utilities\Data; |
| 10 | ?> |
| 11 | |
| 12 | <div id="advads-support-callout"> |
| 13 | <p class="advads-notice-inline advads-idea"> |
| 14 | <a href=" |
| 15 | <?php |
| 16 | echo esc_url( |
| 17 | add_query_arg( |
| 18 | [ |
| 19 | 'page' => 'advanced-ads-app', |
| 20 | 'path' => '/support', |
| 21 | 'utm_source' => 'advancedads', |
| 22 | 'utm_medium' => 'in-plugin', |
| 23 | 'utm_campaign' => 'a2-in_plugin-support', |
| 24 | ], |
| 25 | admin_url( 'admin.php' ) |
| 26 | ) |
| 27 | ); |
| 28 | ?> |
| 29 | " |
| 30 | target="_blank"><strong><?php esc_html_e( 'Problems or questions?', 'advanced-ads' ); ?></strong> |
| 31 | <?php esc_html_e( 'Save time and get personal support.', 'advanced-ads' ); ?> <strong style="text-decoration: underline;"><?php esc_html_e( 'Ask your question!', 'advanced-ads' ); ?></strong> |
| 32 | </a> |
| 33 | </p> |
| 34 | </div> |
| 35 |