• Resolved taramahakita

    (@taramahakita)


    hello ,

    i want to ask, is it possible to change location not to link to map , or make it just as plain text

    and how to do it, hope that someone can help me

    thanks

    how to remove linked map ex:

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello taramahakita,

    Add below code into your current theme’s functions.php file located wp-content/themes/your_current_theme/ folder.


    add_filter( 'the_job_location_map_link', 'remove_map_link' );
    function remove_map_link( $location, $post ){
    return '<span>'.esc_html( strip_tags( $location ) ).'</span>';
    }

    Note : All Changes you done in any file of theme are gone when you update theme. So prefer Child Theme.

    Hope this will helps you.

    Thread Starter taramahakita

    (@taramahakita)

    fantastic, it worked

    thankyou very much sir saurabh dhariwal

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘remove location to link to map’ is closed to new replies.