This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly | |
if(!class_exists("PieRegister")){ | |
require_once(PIEREG_DIR_NAME.'/pie-register.php'); | |
} | |
function pieResetFormOutput($piereg_widget = false){ | |
$pie_register_base = new PieReg_Base(); | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('wpgmp_infowindow_post_message', 'wpgmp_infowindow_post_message',1,2 ); | |
function wpgmp_infowindow_post_message($message,$map) { | |
//This will apply for map id 1, by accessing the map-object. | |
if( $map->map_id == '1') { | |
$message = "<h1>{marker_title}</h1>"; | |
} |