template.php
139 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Final output for the Product Experimentation |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * |
| 8 | * @var array $winner the winner feature. |
| 9 | * @var string $screen the screen where it's displayed. |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <style> |
| 14 | #support #advads_overview_pef { |
| 15 | max-width: 998px; |
| 16 | } |
| 17 | #advads_overview_pef { |
| 18 | border: 1px solid #0474a2; |
| 19 | border-radius: 5px; |
| 20 | margin: 22px 0; |
| 21 | color: #1b193a; |
| 22 | } |
| 23 | |
| 24 | #advads_overview_pef div.aa_overview_pef_upper { |
| 25 | padding: 44px 44px 44px 208px; |
| 26 | background: url(<?php echo esc_url( trailingslashit( plugin_dir_url( \AdvancedAds\Modules\ProductExperimentationFramework\FILE ) ) ) . '/assets/aa-pef-bg.svg'; ?>) top left / 40px auto repeat; |
| 27 | border-radius: 5px 5px 0 0; |
| 28 | color: inherit; |
| 29 | } |
| 30 | |
| 31 | #advads_overview_pef p.aa_overview_pef_dismiss { |
| 32 | position: absolute; |
| 33 | top: 22px; |
| 34 | right: 22px; |
| 35 | margin: 0; |
| 36 | text-align: right; |
| 37 | color: inherit; |
| 38 | } |
| 39 | |
| 40 | #advads_overview_pef p.aa_overview_pef_dismiss a { |
| 41 | display: block; |
| 42 | text-decoration: none; |
| 43 | color: #1b193a; |
| 44 | } |
| 45 | |
| 46 | #advads_overview_pef p.aa_overview_pef_subhead { |
| 47 | margin: 0 0 11px; |
| 48 | font-size: 18px; |
| 49 | line-height: 18px; |
| 50 | text-transform: uppercase; |
| 51 | font-weight: bold; |
| 52 | color: inherit; |
| 53 | } |
| 54 | |
| 55 | #advads_overview_pef p.aa_overview_pef_subhead:before { |
| 56 | content: ""; |
| 57 | position: absolute; |
| 58 | top: 44px; |
| 59 | left: 44px; |
| 60 | width: 120px; |
| 61 | height: 164px; |
| 62 | background: url(<?php echo esc_url( trailingslashit( plugin_dir_url( \AdvancedAds\Modules\ProductExperimentationFramework\FILE ) ) ) . '/assets/aa-pef-amazon-deco.svg'; ?>) center/contain no-repeat; |
| 63 | } |
| 64 | |
| 65 | #advads_overview_pef h3.aa_overview_pef_head { |
| 66 | margin: 0 0 44px; |
| 67 | font-size: 36px; |
| 68 | line-height: 36px; |
| 69 | font-weight: bold; |
| 70 | color: inherit; |
| 71 | } |
| 72 | |
| 73 | #advads_overview_pef p.aa_overview_pef_copy { |
| 74 | margin: 0 0 44px; |
| 75 | font-size: 18px; |
| 76 | line-height: 22px; |
| 77 | font-weight: normal; |
| 78 | color: inherit; |
| 79 | } |
| 80 | |
| 81 | #advads_overview_pef p.aa_overview_pef_copy:last-child { |
| 82 | margin-bottom: 0; |
| 83 | } |
| 84 | |
| 85 | #advads_overview_pef div.aa_overview_pef_lower { |
| 86 | padding: 22px 44px 22px 208px; |
| 87 | color: inherit; |
| 88 | } |
| 89 | |
| 90 | #advads_overview_pef p.aa_overview_pef_cta { |
| 91 | margin: 0; |
| 92 | font-size: 18px; |
| 93 | font-weight: bold; |
| 94 | color: inherit; |
| 95 | } |
| 96 | |
| 97 | #advads_overview_pef a.aa_overview_pef_button { |
| 98 | display: inline-block; |
| 99 | margin-left: 22px; |
| 100 | padding: 8px 22px; |
| 101 | font-size: 18px; |
| 102 | font-weight: bold; |
| 103 | border-radius: 5px; |
| 104 | color: #fff; |
| 105 | background: #1b193a; |
| 106 | text-decoration: none; |
| 107 | } |
| 108 | </style> |
| 109 | <script> |
| 110 | jQuery( document ).on( 'click', '.aa_overview_pef_dismiss', function ( ev ) { |
| 111 | ev.preventDefault(); |
| 112 | wp.ajax.post( |
| 113 | 'advanced_ads_pef', |
| 114 | { |
| 115 | _ajax_nonce: '<?php echo esc_js( wp_create_nonce( 'advanced_ads_pef' ) ); ?>', |
| 116 | version: '<?php echo esc_js( ADVADS_VERSION ); ?>' |
| 117 | } |
| 118 | ).done( function () { |
| 119 | jQuery( '#advads_overview_pef' ).remove(); |
| 120 | } ); |
| 121 | } ); |
| 122 | </script> |
| 123 | <div id="advads_overview_pef" class="postbox position-full"> |
| 124 | <div class="aa_overview_pef_upper"> |
| 125 | <p class="aa_overview_pef_dismiss"><a class="dashicons dashicons-dismiss" href="#"></a></p> |
| 126 | <p class="aa_overview_pef_subhead"><?php echo esc_html( $winner['subheading'] ); ?></p> |
| 127 | <h3 class="aa_overview_pef_head"><?php echo esc_html( $winner['heading'] ); ?></h3> |
| 128 | <p class="aa_overview_pef_copy"><?php echo wp_kses_post( $winner['text'] ); ?></p> |
| 129 | </div> |
| 130 | <div class="aa_overview_pef_lower"> |
| 131 | <p class="aa_overview_pef_cta"> |
| 132 | <?php echo esc_html( $winner['cta'] ); ?> |
| 133 | <a class="aa_overview_pef_button" href="<?php echo esc_url( $this->build_link( $winner, $screen ) ); ?>" target="_blank"> |
| 134 | <?php echo esc_html( $winner['cta_button'] ); ?> |
| 135 | </a> |
| 136 | </p> |
| 137 | </div> |
| 138 | </div> |
| 139 |