|
/ Documentation /Developer Documentation/Action Hooks/ srfm_entry_render_field_custom_value

srfm_entry_render_field_custom_value

Description:

This filter alllows you to enable render a custom value column in entries.

Parameters:

“$value (bool) –

Field name string”

Enable/Disable custom column
$field_name (string)

Hook Source:

/**
* hook source
 */
apply_filters( 'srfm_entry_render_field_custom_value', false, $field_name );

Hook Usage:

add_filter( 'srfm_entry_render_field_custom_value', 'your_custom_function' )

function your_custom_function( $value ) {
  //Add code here
    return $value;
}

Hook Example:

add_filter( 'srfm_entry_render_field_custom_value', 'your_custom_function' )

function your_custom_function( $value ) {
  //Add code here
    return $value;
}
Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
On this page
Scroll to Top