Support Forums

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Pods Relationship Fields

Viewing 6 posts - 1 through 6 (of 6 total)
  • Trevor Moderator
    #243620

    The earlier answer still stands, but V3 is coming in June (we hope, but that may flex a bit). What you need will require an extension plugin (most likely), so that may be further off, maybe not until V3.1.

    Ross Moderator
    #243695

    Hi Jo

    This is actually possible using one of our filters – are you comfortable tweaking a little PHP to put in your themes functions.php file?

    Thanks

    Sunny Gulati
    #260658

    Hello Team,

    I am looking for the same, please let me know if any way to do it by tweaking functions.php file.

    Thanks

    Ross Moderator
    #260793

    Hi Sunny

    You can replace the ID’s, by post title, by adding this to functions.php:

    
    function filter_input_object($input_object, $sfid) {
    	
    	if(($input_object['name'] == '_sfm_podsrelationship')) {
    		
    		foreach($input_object['options'] as $option) {
    			$option->label = get_the_title($option->value);
    		}
    		
    		return $input_object;
    	}
    	else {
    		
    		return $input_object;
    	}
    }
    add_filter('sf_input_object_pre', 'filter_input_object', 10, 2);

    Make sure to change the name of the field to match yours:
    _sfm_podsrelationship

    To find your field name, just check the URL when you do a search:
    https://searchandfilter.com/documentation/accessing-search-data/?sfref=dc#how-to-get-the-field-name

    Let me know how you get on.

    Thanks

    Kamil
    #262907

    Thanks mate, this is the solution I was looking for

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Pods Relationship Fields’ is closed to new replies.