This file contains 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
#!/bin/bash | |
function reorient_usage() { | |
e=$(printf "\e") | |
RESET="$e[0m" | |
RED="$e[1;37;41m" | |
BOLD="$e[1m" | |
UNBOLD="$e[21m" | |
RED="$e[1;37;41m" |
This file contains 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
/** button actions */ | |
function render_point_actions_meta_box( $post ) { | |
// Display the save button | |
$button = sprintf( | |
'<input type="submit" name="save_custom" id="save_custom" class="" value="%1$s">', | |
esc_html__( 'Save', 'iglobes' ) | |
); | |
printf( '<div class="custom-save-button">%1$s</div>', $button ); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
.wp-embed .dashicons { | |
display:inline-block; | |
width:20px; | |
height:20px; | |
background-color:transparent; | |
background-repeat:no-repeat; | |
background-size:20px; | |
background-position:center; | |
transition:background .1s ease-in; | |
position:relative; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>IGM - Collect Coordinates</title> | |
<script src="https://maps.googleapis.com/maps/api/js?key=<google-key>=initMap" | |
async defer></script> | |
<script> | |
var map; | |
var count = 1; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 | |
/** | |
* ******* | |
* Interactive Geo Maps user filter | |
* ******************************** | |
*/ | |
add_filter( 'manage_igmap_posts_columns', 'igmaps_cols', 11 ); | |
function igmaps_cols( $columns ) { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
.imapsCircle { | |
paint-order: stroke; | |
stroke-opacity:1; | |
stroke: blue; /* change with the stroke color you want */ | |
animation: pulse-me 4s linear infinite; | |
} | |
@keyframes pulse-me { | |
0% { | |
stroke-opacity: 0; |
NewerOlder