File: /mnt/data/companiesonthegouk/wp-content/plugins/apper-core/includes/acm-help.php
<?php
//acm theme help button
function acm_help_popup()
{
if( !function_exists('acmthemes_settings'))
return;
//get theme Options
$settings = acmthemes_settings();
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
if ( isset( $settings['disable_help_btn_adminarea'] ) && 1 == $settings['disable_help_btn_adminarea'] ) {
return;
}
?>
<div class="acm-help-window">
<div id="acm-popup">
<ul>
<li>
<a href="https://hostacmee.space/docs/apper/" target="_blank">
<span>
<i aria-hidden="true" class="icon icon-book-open"></i>
</span>
<div class="acm-help-content">
<?php echo esc_html__('Documentation', 'apper'); ?>
<span class="acm-help-desc"><?php echo esc_html__('Theme information.', 'apper'); ?></span>
</div>
</a>
</li>
<li>
<a href="https://acmeedesign.support/helpproduct/apper-wordpress-landing-page-theme/" target="_blank">
<span>
<i aria-hidden="true" class="icon icon-notebook"></i>
</span>
<div class="acm-help-content">
<?php echo esc_html__('Knowledge base', 'apper'); ?>
<span class="acm-help-desc"><?php echo esc_html__('Knowledge base topics.', 'apper'); ?></span>
</div>
</a>
</li>
<li>
<a href="https://envato.acmeedesign.support/" target="_blank">
<span>
<i aria-hidden="true" class="icon icon-earphones-alt"></i>
</span>
<div class="acm-help-content">
<?php echo esc_html__('Submit ticket', 'apper'); ?>
<span class="acm-help-desc"><?php echo esc_html__("Need help with a query or an issue?", "apper"); ?></span>
</div>
</a>
</li>
</ul>
</div>
<button id="acm-popup-btn"><span class="apper-help-icon"><i aria-hidden="true" class="icon icon-support"></i>
</span><span>APPER HELP</span></button>
</div>
<?php
}
add_action('all_admin_notices', 'acm_help_popup');