![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/walla3t.corals.io/wp-content/plugins/apper-core/includes/ |
<?php //acm theme help button function acm_help_popup() { //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');