golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/partners/analyticswp
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
base.php
172 B
Del
OK
install.php
1.31 KB
Del
OK
integration.php
1.9 KB
Del
OK
notices.php
2.92 KB
Del
OK
Edit: notices.php
<?php namespace Breakdance\Partners\AnalyticsWP; use function Breakdance\BreakdanceOxygen\Strings\__bdox; function noticeForCustomCodeScreen() { ?> <style> #analyticswp-ad { display: none; background-color: #fff; border: 1px solid #ccd0d4; padding: 20px; margin-bottom: 20px; position: relative; box-shadow: 0 1px 1px rgba(0, 0, 0, .04); max-width: 900px; box-sizing: border-box; } #dismiss-ad { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 16px; cursor: pointer; } </style> <div id="analyticswp-ad"> <h3 style="margin-top: 0;"><?php echo __bdox('plugin_name'); ?> Recommendation: Use AnalyticsWP</h3> <p>Get detailed insights into your site's performance with AnalyticsWP, recommended by <?php echo __bdox('plugin_name'); ?>. Enjoy a free version, or upgrade to the pro version with a special discount code exclusively for <?php echo __bdox('plugin_name'); ?> users on our <a href="<?php echo __bdox('partner_discounts_link'); ?>" target="_blank">partner discounts page</a>.</p> <a href="https://www.analyticswp.com/?utm_campaign=<?php echo strtolower(__bdox('plugin_name')); ?>_admin_header_footer_code" target="_blank" class="button button-primary">Learn More</a> <button id="dismiss-ad">×</button> </div> <script> document.addEventListener('DOMContentLoaded', function() { var adElement = document.getElementById('analyticswp-ad'); var dismissButton = document.getElementById('dismiss-ad'); function setCookie(name, value, days) { var expires = ""; if (days) { var date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } document.cookie = name + "=" + (value || "") + expires + "; path=/"; } function getCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) === ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length); } return null; } if (!getCookie('analyticswpAdDismissed')) { adElement.style.display = 'block'; } dismissButton.addEventListener('click', function() { adElement.style.display = 'none'; setCookie('analyticswpAdDismissed', 'true', 300); }); }); </script> <?php }
Save