I’m certain you’re wrong, since I’ve changed the field labels for listing details using the agent press listing plugin on https://www.corleyre.com with assistance from the Studiopress forum.
I hope you’re amenable to looking into this request, especially since not all brokers use IDX plugins for MLS syndication on their sites and not every broker who wishes to use this great plugin.
In fact, here is the AgentPress Listings plugin code I changed the Field Labels for Listing Details to customize it for the information our customers our most interested in
class AgentPress_Listings {
var $settings_field = ‘agentpress_taxonomies’;
var $menu_page = ‘register-taxonomies’;
/**
* Property details array.
*/
var $property_details;
/**
* Construct Method.
*/
function __construct() {
$this->property_details = apply_filters( ‘agentpress_property_details’, array(
‘col1’ => array(
__( ‘Price:’, ‘apl’ ) => ‘_listing_price’,
__( ‘Address:’, ‘apl’ ) => ‘_listing_address’,
__( ‘City:’, ‘apl’ ) => ‘_listing_city’,
__( ‘State:’, ‘apl’ ) => ‘_listing_state’,
__( ‘ZIP:’, ‘apl’ ) => ‘_listing_zip’
),
‘col2’ => array(
__( ‘MLS #:’, ‘apl’ ) => ‘_listing_mls’,
__( ‘Square Feet:’, ‘apl’ ) => ‘_listing_sqft’,
__( ‘Bedrooms:’, ‘apl’ ) => ‘_listing_bedrooms’,
__( ‘Bathrooms:’, ‘apl’ ) => ‘_listing_bathrooms’,
__( ‘Basement:’, ‘apl’ ) => ‘_listing_basement’
)
) );
And that was in the agentpress-listings/includes/class-listings.php file of the plugin (version 1.0).
Now, are you absolutely sure there’s no way I can change field labels for Listing Details inside WP Listings?