Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days.
Email: contact@ekko.web
Phone: + (200) 0760 0760
Google maps requires a valid API key in order to work. You can add it in Dashboard > Ekko > Theme Options > Global Options. Generate a new API key from https://developers.google.com/maps
Let's get in touch
We will be happy to answer your questions.
function my_custom_enqueue_scripts() {
// Get the current screen
$current_screen = get_current_screen();
// Only enqueue the wp-editor script on post or page editor, not on the widgets or customizer screen
if ( $current_screen && $current_screen->is_block_editor() && !is_customize_preview() && !wp_should_load_block_editor_scripts() ) {
wp_enqueue_script('wp-editor');
}
}
add_action('admin_enqueue_scripts', 'my_custom_enqueue_scripts');