Viewing 1 replies (of 1 total)
  • you can hook into em_cp_location_supports filter and add it inside your theme functions.php

    e.g.

    function my_mod_remove_editor($supports){
     $supports = array('title','excerpt','custom-fields','comments','thumbnail','author');
     return $supports;
    }
    add_filter('em_cp_location_supports','my_mod_remove_editor',10,1);

Viewing 1 replies (of 1 total)
  • The topic ‘turn off description in location’ is closed to new replies.