-
AuthorSearch Results
-
June 19, 2016 at 11:38 pm #48863
In reply to: Use meta field for taxonomy value display
AnonymousInactiveGOT IT!
Just trying to figure out why my “All authors” label is now missing, but the names are showing up properly! Was just missing the “->value” after the $option above:
function filter_function_name($input_object, $sfid) { if ($input_object['name'] == '_sft_author') { global $coauthors_plus; //udpate this field before rendering foreach($input_object['options'] as $key => $option) { $user = $coauthors_plus->get_coauthor_by( 'user_nicename', $option->value ); $input_object['options'][$key]->label = $user->display_name; } } return $input_object; } add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
Will post back in a few with final code, once I’ve figured out where my main label has gone!
June 19, 2016 at 11:22 pm #48858In reply to: Use meta field for taxonomy value display
AnonymousInactiveWhoops! Nope, being an idiot. Ignore what I said about input taxonomy. That was a load of old hogswash. Would help if slowed down for a second to realise just how the filter (and the plugin) worked!
Getting closer:
function filter_function_name($input_object, $sfid) { if ($input_object['name'] == '_sft_author') { global $coauthors_plus; //udpate this field before rendering foreach($input_object['options'] as $key => $option) { $user = $coauthors_plus->get_coauthor_by( 'user_nicename', $option ); $input_object['options'][$key]->label = $user->display_name; } } return $input_object; } add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
May 25, 2016 at 4:15 pm #46666In reply to: Dynamic slider range
RossKeymasterHey Arek
I’ve just done a quick update to the plugin which should allow you to change the slider min / max settings (not their actual values).
Install the update I’ve just emailed to you, by following:
1) disable S&F (do not delete via wp-admin)
2) via FTP upload and replace the existing S&F in –wp-content/plugins/search-filter-pro/
3) enable S&F via wp-adminAfter this you can use the following filter to change the min max:
function change_slider_min_max($input_object, $sfid) { if(($input_object['name']=='_sfm__price')&&(($input_object['type']=='range-slider')||($input_object['type']=='range-number'))) { $input_object['attributes']['data-min'] = 10; $input_object['attributes']['data-max'] = 200; } return $input_object; } add_filter('sf_input_object_pre', 'change_slider_min_max', 10, 2);
Check here for a full example of how to use the filter:
https://gist.github.com/rmorse/7b59b45a14b1ca179868
Thanks
May 18, 2016 at 10:15 am #45837In reply to: Pre-select Author
TrevorParticipantAh, that’s better 🙂
I think you could use the sf_input_object_pre filter in your theme’s functions.php file, as shown here:
http://www.designsandcode.com/documentation/search-filter-pro/action-filter-reference/
You might also find references to that filter in a search of this forum where others will have used it. The problem would be that it would have to be different for every page in the profiles and I do not see how you could do that.
March 21, 2016 at 1:07 pm #40004In reply to: Change Post Type labels
AnonymousInactivePerfect,
I’ve done it… it works great. Thank you!
For someone curious about how to implement this, on your plugin php add the following function:
function my_plugin_search_filter_change_label($input_object, $sfid) { if ($sfid == 12345 && $input_object['name'] == '_sf_post_type') { foreach ($input_object['options'] as $key => $option) { if ($option->label == 'Media') { $input_object['options'][$key]->label = 'Photos'; } } } return $input_object; } add_filter('sf_input_object_pre', 'my_plugin_search_filter_change_label', 10, 2);
Hope it helps.
January 15, 2016 at 2:30 pm #34366In reply to: Filter Dropdown options
RossKeymasterHi Jacob sorry for the delay.
You’re almost there.
First, you have only 1
=
in the firstif
statement.So it does the code for every single field – this needs to be changed to a double
==
Second, I think likely you got the fieldname wrong – see here on how to get the correct fieldname:
Here is your code updated (and I’m guessing the field name is from meta data, otherwise you need to find the name as link just above:
<?php function filter_input_object($input_object, $sfid) { if(($input_object['name'] == '_sfm_workshop_location')) { 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); ?>
Thanks
-
AuthorSearch Results