add_filter( 'pods_ui_field_value', 'change_text_field_display', 10, 4 );
// This will only change the visual text display in the table of the
// admin manage screen (not actual value in the database)
function change_text_field_display($row_value, $field, $attributes, $row) {
// NOTE: this function will run columns X rows times.
// Each time the function runs, the next column value is being added to the $row array
// (until it "resets" for a new row). $row variable contains much information like
// the ID of the related value etc.
if ($row_value == 'Test') { // A simple example of changing the text displayed in one of the cells.
$row_value = 'New Value';
}
return $row_value;
}
//!NOTE: It is important to know that the changes you make here does not affect the database nor the search results;
// if we would have searched "New Value" we wouldn't get any results.
add_filter( 'pods_ui_field_value', 'change_text_field_display', 10, 4 );
// This will only change the visual text display in the table of the
// admin manage screen (not actual value in the database)
function change_text_field_display($row_value, $field, $attributes, $row) {
// NOTE: this function will run columns X rows times.
// Each time the function runs, the next column value is being added to the $row array
// (until it "resets" for a new row). $row variable contains much information like
// the ID of the related value etc.
if ($row_value == 'Test') { // A simple example of changing the text displayed in one of the cells.
$row_value = 'New Value';
}
return $row_value;
}
//!NOTE: It is important to know that the changes you make here does not affect the database nor the search results;
// if we would have searched "New Value" we wouldn't get any results.
add_filter( 'pods_ui_field_value', 'change_text_field_display', 10, 4 ); // This will only change the visual text display in the table of the // admin manage screen (not actual value in the database) function change_text_field_display($row_value, $field, $attributes, $row) { // NOTE: this function will run columns X rows times. // Each time the function runs, the next column value is being added to the $row array // (until it "resets" for a new row). $row variable contains much information like // the ID of the related value etc. if ($row_value == 'Test') { // A simple example of changing the text displayed in one of the cells. $row_value = 'New Value'; } return $row_value; } //!NOTE: It is important to know that the changes you make here does not affect the database nor the search results; // if we would have searched "New Value" we wouldn't get any results.