mystickymenu
Last commit date
admin
7 months ago
css
7 months ago
fonts
4 years ago
images
1 year ago
js
7 months ago
languages
6 months ago
class-email-signup.php
7 months ago
class-help.php
7 months ago
class-review-box.php
7 months ago
class-upgrade-box.php
9 months ago
index.php
8 years ago
mystickymenu-admin-widgetanalytics.php
7 months ago
mystickymenu-affiliate.php
9 months ago
mystickymenu-contact-leads.php
1 year ago
mystickymenu-deactivate-form.php
1 year ago
mystickymenu-fonts.php
2 years ago
mystickymenu-popup.php
1 year ago
mystickymenu-review-popup.php
9 months ago
mystickymenu.php
6 months ago
mystickymeny-new-welcomebar.php
7 months ago
readme.txt
4 months ago
recommended-plugins.php
7 months ago
stickymenu-dashboard.php
9 months ago
uninstall.php
2 years ago
upgrade-to-pro.php
1 year ago
welcome-bar.php
7 months ago
mystickymenu-admin-widgetanalytics.php
195 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Sticky menu Analytics Pro Feature |
| 4 | * |
| 5 | * @author : Premio <contact@premio.io> |
| 6 | * @license : GPL2 |
| 7 | * */ |
| 8 | |
| 9 | if (defined('ABSPATH') === false) { |
| 10 | exit; |
| 11 | } |
| 12 | ?> |
| 13 | |
| 14 | <link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" /> |
| 15 | <div class="container mystickymenu-widgetanalytic-wrap wrap"> |
| 16 | <h2></h2> |
| 17 | <div class="bg-white flex rounded-lg border border-solid border-[#EAEFF2] mystickymenu-widgetanalytic-body"> |
| 18 | <div class="px-7 py-8 flex-1"> |
| 19 | <h2 class="mystickymenu-widgetanalytic-heading"><?php _e("Unlock My Sticky Bar <span>Analytics</span> 🚀", "mystickymenu") ?></h2> |
| 20 | |
| 21 | |
| 22 | <div class="mystickymenu-licenseimage"> |
| 23 | <img class="h-full w-auto" src="<?php echo esc_url(plugins_url('/images/analytics-image.png', __FILE__)); ?>" alt="Stickymenu analytics" /> |
| 24 | </div> |
| 25 | |
| 26 | <h3><?php esc_html_e( 'What can you use it for?', 'mystickymenu');?></h3> |
| 27 | <ul class="mt-7 flex flex-col space-y-2 content-center"> |
| 28 | <li class="flex items-center py-6 px-7 bg-[#F9FAFB] rounded-md space-x-6 text-cht-gray-150 text-lg font-primary"> |
| 29 | <img width="42" height="59" src="<?php echo esc_url(MYSTICKYMENU_URL) ?>/images/channel-discover.svg" alt="Channel Discover"> |
| 30 | <span class="max-w-[305px]"><?php _e("<strong>Discover</strong> the most frequently used channels", "mystickymenu") ?></span> |
| 31 | </li> |
| 32 | <li class="flex items-center py-6 px-7 bg-[#F9FAFB] rounded-md space-x-6 text-cht-gray-150 text-lg font-primary"> |
| 33 | <img width="42" height="59" src="<?php echo esc_url(MYSTICKYMENU_URL) ?>/images/channel-tracking.svg" alt="Channel Tracking"> |
| 34 | <span><?php _e("Keep <strong>track</strong> of how each widget performs", "mystickymenu") ?></span> |
| 35 | </li> |
| 36 | <li class="flex items-center py-6 px-7 bg-[#F9FAFB] rounded-md space-x-6 text-cht-gray-150 text-lg font-primary"> |
| 37 | <img width="42" height="59" src="<?php echo esc_url(MYSTICKYMENU_URL); ?>/images/channel-analyze.svg" alt="Channel Analyze"> |
| 38 | <span><?php _e("<strong>Analyze</strong> the number of unique clicks and the <strong>click-through rate</strong>", "mystickymenu") ?></span> |
| 39 | </li> |
| 40 | </ul> |
| 41 | |
| 42 | <div class="flex items-center mt-5 space-x-3 content-center"> |
| 43 | <a class="btn rounded-lg drop-shadow-3xl font-normal" href="<?php echo esc_url(admin_url("admin.php?page=my-stickymenu-upgrade")) ?>" title="Upgrade to Pro"> |
| 44 | <?php esc_html_e('Upgrade to Pro 🚀', 'mystickymenu'); ?> |
| 45 | </a> |
| 46 | </div> |
| 47 | </div> |
| 48 | |
| 49 | </div> |
| 50 | </div> |
| 51 | |
| 52 | <style> |
| 53 | .mystickymenu-widgetanalytic-body { |
| 54 | display: flex; |
| 55 | justify-content: space-evenly; |
| 56 | } |
| 57 | .mystickymenu-widgetanalytic-body .px-7.py-8.flex-1 h2.mystickymenu-widgetanalytic-heading { |
| 58 | font-family: 'Lato'; |
| 59 | font-style: normal; |
| 60 | font-weight: 800; |
| 61 | font-size: 48px; |
| 62 | line-height: 48px; |
| 63 | text-align: center; |
| 64 | color: #000000; |
| 65 | display: block; |
| 66 | margin: 40px auto; |
| 67 | display: Block; |
| 68 | justify-content: center; |
| 69 | align-items: end; |
| 70 | max-width: 500px; |
| 71 | } |
| 72 | |
| 73 | .mystickymenu-widgetanalytic-body .px-7.py-8.flex-1 h2.mystickymenu-widgetanalytic-heading span{ |
| 74 | color: #6558F5; |
| 75 | font-size: 48px; |
| 76 | font-weight: 800; |
| 77 | } |
| 78 | |
| 79 | |
| 80 | .mystickymenu-widgetanalytic-body .px-7.py-8.flex-1 h3{ |
| 81 | font-family: 'Lato'; |
| 82 | font-style: normal; |
| 83 | font-weight: 600; |
| 84 | font-size: 32px; |
| 85 | line-height: 29px; |
| 86 | color: #000000; |
| 87 | text-align: center; |
| 88 | margin:20px 0 16px; |
| 89 | } |
| 90 | |
| 91 | /*.mystickymenu-widgetanalytic-body .w-auto{ |
| 92 | width:100%; |
| 93 | }*/ |
| 94 | |
| 95 | .mystickymenu-widgetanalytic-body ul.mt-7.flex.flex-col.space-y-2 { |
| 96 | display: flex; |
| 97 | flex-direction: column; |
| 98 | margin-top: 1.75rem; |
| 99 | } |
| 100 | |
| 101 | .mystickymenu-widgetanalytic-body img { |
| 102 | height: auto; |
| 103 | max-width: 100%; |
| 104 | display: block; |
| 105 | vertical-align: middle; |
| 106 | } |
| 107 | |
| 108 | .mystickymenu-widgetanalytic-body li { |
| 109 | flex-direction:column; |
| 110 | padding:26px 35px 26px 35px; |
| 111 | box-sizing: border-box; |
| 112 | width: 282px; |
| 113 | height: 153.26px; |
| 114 | background: #FFFFFF; |
| 115 | border-top: 2px solid #DFDFFC; |
| 116 | box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08); |
| 117 | border-radius: 16px; |
| 118 | margin: 0px 10px 20px 10px; |
| 119 | |
| 120 | display:flex; |
| 121 | font-size: 1.125rem; |
| 122 | line-height: 1.75rem; |
| 123 | align-items: center; |
| 124 | |
| 125 | } |
| 126 | .mystickymenu-widgetanalytic-body ul.mt-7.flex.flex-col.space-y-2 { |
| 127 | flex-direction:column; |
| 128 | flex-flow:wrap; |
| 129 | margin-bottom: 1.75rem; |
| 130 | } |
| 131 | |
| 132 | .mystickymenu-widgetanalytic-body .mt-5{ |
| 133 | text-align:center; |
| 134 | border-radius:8px; |
| 135 | margin-top:3.25rem; |
| 136 | margin-bottom:2.25rem; |
| 137 | } |
| 138 | |
| 139 | .mystickymenu-widgetanalytic-body span{ |
| 140 | font-family: 'Lato'; |
| 141 | font-style: normal; |
| 142 | font-weight: 400; |
| 143 | font-size: 14px; |
| 144 | line-height: 17px; |
| 145 | text-align: center; |
| 146 | margin-top:20px; |
| 147 | margin-left: 0px; |
| 148 | color: #000000; |
| 149 | max-width: 405px; |
| 150 | } |
| 151 | |
| 152 | .mystickymenu-widgetanalytic-body a.btn.rounded-lg.drop-shadow-3xl.font-normal{ |
| 153 | padding:16px 47px 16px 47px; |
| 154 | font-size:20px; |
| 155 | text-align:center; |
| 156 | font-weight: 400; |
| 157 | border-radius: 0.5rem; |
| 158 | background-color: #6558F5; |
| 159 | color: #fff; |
| 160 | text-decoration-line: none; |
| 161 | line-height: 1.25rem; |
| 162 | --tw-drop-shadow: drop-shadow(0px 9px 7px rgba60 133 247 /0.37%)); |
| 163 | border: 1px solid #6558F5; |
| 164 | } |
| 165 | |
| 166 | .mystickymenu-widgetanalytic-body ul li img{ |
| 167 | width:auto; |
| 168 | height:48px; |
| 169 | } |
| 170 | |
| 171 | .mystickymenu-widgetanalytic-body img.h-full.w-auto{ |
| 172 | display: flex; |
| 173 | margin: 0 auto; |
| 174 | justify-content: center; |
| 175 | align-items: center; |
| 176 | width: auto; |
| 177 | height:100%; |
| 178 | } |
| 179 | |
| 180 | |
| 181 | .mystickymenu-widgetanalytic-body .px-7.py-8.flex-1 h2.mystickymenu-widgetanalytic-heading img{ |
| 182 | float:right; |
| 183 | } |
| 184 | |
| 185 | @media screen and (max-width: 768px){ |
| 186 | .mystickymenu-widgetanalytic-body .px-7.py-8.flex-1 h2.mystickymenu-widgetanalytic-heading span, |
| 187 | .mystickymenu-widgetanalytic-body .px-7.py-8.flex-1 h2.mystickymenu-widgetanalytic-heading{ |
| 188 | font-size: 28px; |
| 189 | } |
| 190 | .mystickymenu-widgetanalytic-body li { |
| 191 | margin: 0px 20px 20px 20px; |
| 192 | } |
| 193 | } |
| 194 | </style> |
| 195 |