• Resolved webnetimages

    (@webnetimages)


    Hi,

    Agentpress theme + agentpress-listings pluging

    Need to reoder the listing Taxonomies.
    Using “AgentPress Listings Taxonomy Reorder” pluging works good, but ID “features” can′t be reorder.

    Needs to show “features” taxonomy the last one on the search widget, and it appear the first one.

    Regards

    https://www.ads-software.com/plugins/agentpress-listings/

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

    (@modernnerd)

    Hi, webnetimages!

    Listing the features taxonomy last in the search widget isn’t currently possible without editing the plugin, unfortunately.

    Some quick warnings about editing plugins:

    • It’s important to back up your site in full before editing plugins in this way.
    • Future updates to the plugin will overwrite the changes you make.

    If you still want to place the Features drop-down at the end of the search widget, follow these steps:

    1. Edit the file at wp-content/plugins/agentpress-listings/includes/class-taxonomies.php in a text editor on your desktop.

    2. Change this code at the end:

    function get_taxonomies() {
    
    	return array_merge( $this->property_features_taxonomy(), (array) get_option( $this->settings_field ) );
    
    }

    To look like this:

    function get_taxonomies() {
    
    	return array_merge( (array) get_option( $this->settings_field ), $this->property_features_taxonomy() );
    
    }

    If you’re not comfortable editing plugin code or don’t want to have to make this change each time the plugin updates, it would be simplest to leave the Features drop-down where it is for now.

    Thread Starter webnetimages

    (@webnetimages)

    Great, really thanks!

    Thread Starter webnetimages

    (@webnetimages)

    Resolved!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘AgentPress Listings – Order taxonomies’ is closed to new replies.