• Resolved manojcw5

    (@manojcw5)


    Hi team, I was using ACF: better search results plugin which works wonders but need an option to search ACF link field type as well. If we need to search links as well. This would be helpful. As we have links to external document / pdf.

Viewing 1 replies (of 1 total)
  • Plugin Author Mateusz Gbiorczyk

    (@mateuszgbiorczyk)

    Hi @manojcw5,

    Thank you for your message.

    You can add support for this type of field via a plugin. Are you sure you mean a link field or maybe a URL field? These are two different types of fields. I’d like to make sure.

    To do this, in the functions.php file in your theme directory, please add the following code:

    add_filter( 'acfbs_field_types', function ( $field_types ) {
    	$field_types['link'] = 'Link';
    	return $field_types;
    } );

    After adding this code, you will be able to activate support for the new field type in the plugin settings.

    Please let me know if it now works as you expect.

    Best,
    Mateusz

Viewing 1 replies (of 1 total)
  • The topic ‘Need to option to search the link custom field type as well’ is closed to new replies.