-
AuthorSearch Results
-
March 26, 2019 at 1:35 pm #206324
AnonymousInactiveOkay, so that code it still not working for me. I added it just beneath my original code. See below:
if ( ! function_exists( 'visual_posted_on' ) ) : /** * Integrate Co-Authors Plus with TwentyTen by replacing twentyten_posted_on() with this function */ function visual_posted_on() { if ( function_exists( 'coauthors_posts_links' ) ) : printf( __( '%2$s <span style="color:#999;">/</span> %3$s', 'visual' ), 'meta-prep meta-prep-author', sprintf( '<span class="entry-date">%3$s</span>', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), coauthors_posts_links( null, null, null, null, false ) ); else: printf( __( '%2$s <span style="color:#999;">/</span> %3$s', 'visual' ), 'meta-prep meta-prep-author', sprintf( '<span class="entry-date">%3$s</span>', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', get_author_posts_url( get_the_author_meta( 'ID' ) ), esc_attr( sprintf( __( 'View all posts by %s', 'visual' ), get_the_author() ) ), get_the_author() ) ); endif; } endif; function filter_function_name($input_object, $sfid) { if ($input_object['name'] == '_sft_author') { global $coauthors_plus; foreach($input_object['options'] as $key => $option) { if($option->value=="") { $option->label = "All Authors"; } else { $user = $coauthors_plus->get_coauthor_by( 'user_nicename', $option->value ); $input_object['options'][$key]->label = $user->display_name . ' (' . $option->count . ')'; } } } return $input_object; } add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
Should I remove the first part of that code and only have the part you gave me?
The “All Authors” dropdown is still not recognizing additional authors, i.e. Wael (only ones in the first position on a post). And the search field is not recognizing them either. Thanks again for your quick responses.
March 26, 2019 at 1:13 pm #206312
TrevorParticipantOk, so it must go in the file you suggested.
The only bock of code you would have need to add was this, I think:
function filter_function_name($input_object, $sfid) { if ($input_object['name'] == '_sft_author') { global $coauthors_plus; foreach($input_object['options'] as $key => $option) { if($option->value=="") { $option->label = "All Authors"; } else { $user = $coauthors_plus->get_coauthor_by( 'user_nicename', $option->value ); $input_object['options'][$key]->label = $user->display_name . ' (' . $option->count . ')'; } } } return $input_object; } add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
The question is, is that code working? Does the field show ‘All Authors’ in the choice box?
If so, if you edit just that one line to change that label, does it then change in the front end?
March 26, 2019 at 12:37 pm #206286
AnonymousInactiveThanks for your quick response, Trevor. However, I had tried that solution before posting here and it did not work for me. I’m using a child of the Visual Theme. When adding the CoAuthors plugin to the site, this was the code I added into my template-tags.php file in my child theme:
if ( ! function_exists( 'visual_posted_on' ) ) : /** * Integrate Co-Authors Plus with TwentyTen by replacing twentyten_posted_on() with this function */ function visual_posted_on() { if ( function_exists( 'coauthors_posts_links' ) ) : printf( __( '%2$s <span style="color:#999;">/</span> %3$s', 'visual' ), 'meta-prep meta-prep-author', sprintf( '<span class="entry-date">%3$s</span>', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), coauthors_posts_links( null, null, null, null, false ) ); else: printf( __( '%2$s <span style="color:#999;">/</span> %3$s', 'visual' ), 'meta-prep meta-prep-author', sprintf( '<span class="entry-date">%3$s</span>', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', get_author_posts_url( get_the_author_meta( 'ID' ) ), esc_attr( sprintf( __( 'View all posts by %s', 'visual' ), get_the_author() ) ), get_the_author() ) ); endif; } endif;
Then, I added the Trial by Fire code after:
// Trial by fire 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) { if($option->value=="") {//the option with no value is always the "all items" or unselected state $option->label = "All Authors"; } else { $user = $coauthors_plus->get_coauthor_by( 'user_nicename', $option->value ); $input_object['options'][$key]->label = $user->display_name . ' (' . $option->count . ')'; } } } return $input_object; } add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
But still no dice. I’m not sure what I’m missing here, but what should be happening is that when I search for Wael in the search box or even in the dropdown Authors box he should be appearing. But he is not. I would appreciate any further help you can provide. I am stumped.
February 26, 2019 at 1:22 pm #203304In reply to: Set Default Radio box checked to different category
RossKeymasterHi there
I understand the scenario.
We have a filter, to change the default in the search form, but this won’t affect the results.
This would be the code (untested ofc):
function filter_input_object_categories($input_object, $sfid){ //ensure we are only filtering the correct field name - in this case the field we want to filter has the name <code>_sft_marketplace</code> if($input_object['name']!='_sft_marketplace'){ return $input_object; } //manually set the values shown/selected in the field - must be array even if single value //this should really only occur under specific conditions, otherwise your field will be permanently set to this value //if the field is not already in use / selected if(!isset($_GET['_sft_marketplace'])){ //then set it to "best wordpress app themes" $input_object['defaults'] = array("best-wordpress-app-themes"); } return $input_object; } add_filter('sf_input_object_pre', 'filter_input_object_categories', 10, 2);
Thanks
February 7, 2019 at 6:40 pm #201644In reply to: ACF Google Map Location Filter
AnonymousInactiveThanks for the help Trevor! fixed it with the below code, nice one.
function yothop_sf_filter($input_object, $sfid)
{
if($input_object[‘name’]==’_sfm_location’)
{
$options = $input_object[‘options’];
$new_options = [];
foreach ( $options as $option=>$value ) {
$is_numeric = is_numeric($value->value);
if(!$is_numeric){
$new_options[] = $value;
}
}
$input_object[‘options’] = $new_options;
}return $input_object;
}
add_filter(‘sf_input_object_pre’, ‘yothop_sf_filter’, 10, 2);December 14, 2018 at 11:13 am #196334Topic: Not working on page load
in forum Search & Filter Pro
AnonymousInactiveHello Team,
No matter where I search, I can’t find a way to make the plugin run on page load.
Once I start clicking around, the ajax filtering works fine, but I need it to work on the first page load too.
We are using the code below to remove one of the options and to set the default active item. This all works fine.
// Remove “All Courses” option and set main to default on Our Menu.
add_filter( ‘sf_input_object_pre’, function ( $input_object, $sfid ) {
if ( $sfid == 120 ) {
// var_dump($input_object);
if ( ( $input_object[‘name’] = ‘_sft_course’ ) ) {
if ( empty( $input_object[‘defaults’][0] ) ) {
$input_object[‘defaults’] = [ ‘main’ ];
}
$key = array_search( ‘All Courses’, array_column( $input_object[‘options’], ‘label’ ) );
if ( $key !== false ) {
unset( $input_object[‘options’][ $key ] );
$input_object[‘options’] = array_values( $input_object[‘options’] );
}
}
}return $input_object;
}, 10, 2 );Can you please tell me how to instruct the plugin to run in the fresh page load?
I can’t find the answer anywhere in the docs or internet.Thank you very much,
KotaDecember 11, 2018 at 5:55 am #195804In reply to: Custom order of post meta options
AnonymousInactiveOk I got this working! Maybe not the best way possible but it works. Here is what I have done:
function filter_input_object($input_object, $sfid) { if(($input_object['name']!='_sfm_colors')||($input_object['type']!='select')) { return $input_object; } if(!isset($input_object['options'])) { return $input_object; } // Move Green To Top $key = array_search('Green', array_column($input_object['options'], 'value')); $top = $input_object['options'][$key]; unset($input_object['options'][$key]); array_unshift($input_object['options'], $top); // Move All Colors Back to Top $key1 = array_search('', array_column($input_object['options'], 'value')); $top1 = $input_object['options'][$key1]; unset($input_object['options'][$key1]); array_unshift($input_object['options'], $top1); return $input_object; } add_filter('sf_input_object_pre', 'filter_input_object', 10, 2);
If there is a cleaner way I am interested, but this does work.
December 10, 2018 at 5:36 pm #195760In reply to: Custom order of post meta options
AnonymousInactiveNo that’s not the entire code i was using, I was trying to show the filter and function I was using to try and access the object value. I have based my attempts on this github code.
I have tried this:
function filter_input_object($input_object, $sfid) { if(($input_object['name']!='_sfm_colors')||($input_object['type']!='select')) { return $input_object; } if(!isset($input_object['options'])) { return $input_object; } foreach($input_object['options'] as $option) { $green = $option->value == 'Green'; } array_splice( $input_object['options'], 1, 0, array($green) ); return $input_object; } add_filter('sf_input_object_pre', 'filter_input_object', 10, 2);
It returns blank
I just tried this:
function filter_input_object($input_object, $sfid) { if(($input_object['name']!='_sfm_colors')||($input_object['type']!='select')) { return $input_object; } if(!isset($input_object['options'])) { return $input_object; } $green = $input_object->value == 'Green'; array_splice( $input_object['options'], 1, 0, array($green) ); return $input_object; } add_filter('sf_input_object_pre', 'filter_input_object', 10, 2);
It also returns blank
December 10, 2018 at 2:21 pm #195703In reply to: Custom order of post meta options
AnonymousInactiveYes. So for example, I am using:
function filter_input_object($input_object, $sfid) { if(($input_object['name']!='_sfm_colors')||($input_object['type']!='select')) { return $input_object; } if(!isset($input_object['options'])) { return $input_object; } } add_filter('sf_input_object_pre', 'filter_input_object', 10, 2);
But when I try to access a specific option, I have not been able to do so with success. I am not sure of the array structure which is part of the issue.
November 8, 2018 at 1:28 pm #193165In reply to: ACF change date field output
AnonymousInactiveHi Trevor,
This is the code we’ve used btw. Maybe it’s useful 🙂
function filter_function_name($input_object, $sfid) { if($input_object['name']=='_sfm_kalender_datum') { foreach($input_object['options'] as $option) { if($option->value != "") { $date = strtotime( $option->label ); $option->label = date('d m Y', $date); } } } return $input_object; } add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
-
AuthorSearch Results
-
Search Results
-
Topic: Not working on page load
Hello Team,
No matter where I search, I can’t find a way to make the plugin run on page load.
Once I start clicking around, the ajax filtering works fine, but I need it to work on the first page load too.
We are using the code below to remove one of the options and to set the default active item. This all works fine.
// Remove “All Courses” option and set main to default on Our Menu.
add_filter( ‘sf_input_object_pre’, function ( $input_object, $sfid ) {
if ( $sfid == 120 ) {
// var_dump($input_object);
if ( ( $input_object[‘name’] = ‘_sft_course’ ) ) {
if ( empty( $input_object[‘defaults’][0] ) ) {
$input_object[‘defaults’] = [ ‘main’ ];
}
$key = array_search( ‘All Courses’, array_column( $input_object[‘options’], ‘label’ ) );
if ( $key !== false ) {
unset( $input_object[‘options’][ $key ] );
$input_object[‘options’] = array_values( $input_object[‘options’] );
}
}
}return $input_object;
}, 10, 2 );Can you please tell me how to instruct the plugin to run in the fresh page load?
I can’t find the answer anywhere in the docs or internet.Thank you very much,
Kota