I have a custom field in one of my RM categories, lets say textfield_1 in category_1
textfield_1 is a multiline textfield. Within the setting I've defined a callbach function to modify the value of this field. Unfortunately nothing happens.
Where is my mistake?
textfield_1 is a multiline textfield. Within the setting I've defined a callbach function to modify the value of this field. Unfortunately nothing happens.
Code:
function myfield(&$content){
$content = "abc";
}
Where is my mistake?