Change Labels Problem
-
I changed the labels using the instructions on agentevolution.com This is the filter I am using
# Add filter to customize listing details add_filter( 'wp_listings_property_details', 'custom_wp_listings_details'); function custom_wp_listings_details() { $property_details_columns = array( 'col1' => array( __( 'Price:', 'wp_listings' ) => '_listing_price', __( 'Taxes / Yr:', 'wp_listings' ) => '_listing_taxes', __( 'Address:', 'wp_listings' ) => '_listing_address', __( 'Neighborhood:', 'wp_listings' ) => '_listing_neighborhood', __( 'ZIP:', 'wp_listings' ) => '_listing_zip', __( 'MLS #:', 'wp_listings' ) => '_listing_mls', __( 'Open House Time & Date:', 'wp_listings' ) => '_listing_open_house' ), 'col2' => array( __( 'Year Built:', 'wp_listings' ) => '_listing_year_built', __( 'Design:', 'wp_listings' ) => '_listing_design', __( 'Square Feet:', 'wp_listings' ) => '_listing_sqft', __( 'Lot Dimensions:', 'wp_listings' ) => '_listing_lot_dimensions', __( 'Bedrooms:', 'wp_listings' ) => '_listing_bedrooms', __( 'Bathrooms:', 'wp_listings' ) => '_listing_bathrooms', __( 'Parking:', 'wp_listings' ) => '_listing_parking' ), ) ; return $property_details_columns; }
It does change the input labels but not all the labels are changed on the published listing. Here is a screenshot of the problem
Here is the listing on my website
Beside this small problem I love this plugin
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Change Labels Problem’ is closed to new replies.