Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nick C

    (@modernnerd)

    You can remove the “Property Details” admin area meta box that includes the custom text, custom fields, map, and video boxes using this code in your theme’s functions.php file:

    add_action( 'admin_menu', 'custom_remove_listings_box' );
    
    function custom_remove_listings_box() {
    	remove_meta_box( 'listing_details_metabox', 'listing', 'normal' );
    }

    If you just want to remove the map and video fields from the bottom of the Property Details box but leave the other fields, the plugin doesn’t offer an action you can unhook or provide a filter to remove those fields only. You could explore adding custom CSS to the admin area to hide those fields.

    Thread Starter Kahome

    (@kahome)

    Thank @nick Cernis.

    Do you have an idea of how I can increase the columns from 3 to 4.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable Map Embed Code and Video Embed Code option from listings’ is closed to new replies.