|
/ Documentation /Developer Documentation/Action Hooks/ srfm_entry_render_field_custom_value

srfm_entry_render_field_custom_value

Description

This filter allows you to enable rendering a custom value column in entries.

Parameters

$value (bool) – Field name string
Enable/Disable custom column
$field_name (string)

Hook Source

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

Hook Usage

PHP
add_filter( 'srfm_entry_render_field_custom_value', 'your_custom_function' )

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

Hook Example

PHP
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