JoeHana
9/13/2013 - 1:30 AM

Remove Order Menu and Map Button

Remove Order Menu and Map Button

<?php

/**
 * Remove Order Menu and Map Button
 */
 
add_action('init', 'custom_init');

function custom_init() {
	remove_action( 'wpsight_loop_title_actions', 'wpsight_do_listing_archive_order_dropdown', 20 );
	remove_action( 'wpsight_loop_title_actions', 'wpsight_do_listing_search_map_link', 10 );
}