Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
common
/
src
/
views
/
tooltip
:
tooltip.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Tooltip Basic View Template * The base template for Tribe Tooltips. * * Override this template in your own theme by creating a file at [your-theme]/tribe/tooltips/tooltip.php * * @since 4.9.8 * * @package Tribe * @version 4.9.8 */ ?> <div class="tribe-tooltip <?php echo sanitize_html_class( $wrap_classes ); ?>" aria-expanded="false"> <span class="dashicons dashicons-<?php echo sanitize_html_class( $icon ); ?> <?php echo sanitize_html_class( $classes ); ?>"></span> <div class="<?php echo sanitize_html_class( $direction ); ?>"> <?php foreach ( $messages as $message ) : ?> <p> <span><?php echo wp_kses_post( $message ); ?><i></i></span> </p> <?php endforeach; ?> </div> </div>