PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / extensions / wpdt / promote_wpdt.php
ameliabooking / extensions / wpdt Last commit date
assets 2 years ago functions.php 2 years ago promote_wpdt.php 1 year ago
promote_wpdt.php
47 lines
1 <?php
2 ?>
3 <div class="notice notice-info is-dismissible am-promote-wpdt-notice">
4 <div id="am-promote-wpdt-section">
5 <div id="am-first-section">
6 <img class="am-wpdt-logo" src="<?php echo AMELIA_URL ?>public/wpdt/img/wpdt-promo-left.webp" alt="WPDT Left">
7 </div>
8 <div id="am-second-section">
9 <img class="am-wpdt-logo" src="<?php echo AMELIA_URL ?>public/wpdt/img/wpDataTables-logo.svg" alt="WPDT Logo">
10 <img class="am-wpdt-logo-mobile" src="<?php echo AMELIA_URL ?>public/wpdt/img/wpDT-logo-w.webp" alt="WPDT Logo">
11 <p class="am-wpdt-message"><?php esc_html_e("Have you tried our table plugin?", "wpamelia") ?></p>
12 <button id="am-download-it" onclick="window.open('https://wpdatatables.com/pricing/?utm_source=amelia-lite&utm_medium=banner&utm_content=wpdt&utm_campaign=wpdt', '_blank')">
13 <?php esc_html_e("Get started", "wpamelia") ?>
14 </button>
15 </div>
16 <div id="am-third-section">
17 <img class="am-wpdt-pic-1" src="<?php echo AMELIA_URL ?>public/wpdt/img/wpdt-promo-right.webp" alt="WPDT right">
18 </div>
19 </div>
20 <button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
21 </div>
22 <script>
23 (function ($) {
24 $(function () {
25 $('.am-promote-wpdt-notice .notice-dismiss').on('click', function (e) {
26 e.preventDefault()
27 $.ajax({
28 url: ajaxurl,
29 method: 'POST',
30 data: {
31 'action': 'amelia_remove_wpdt_promo_notice'
32 },
33 dataType: 'json',
34 async: !0,
35 success: function (e) {
36 if (e == 'success') {
37 $('.am-promote-wpdt-notice').slideUp('fast')
38 }
39 }
40 })
41 })
42 })
43 })(jQuery)
44
45 </script>
46
47