Notice: Use of undefined constant Redux_TEXT_DOMAIN – assumed ‘Redux_TEXT_DOMAIN’

The problem with your $item_info is that the variable is not initialized before your try to append to it. $item_info .= ‘String content’; is the exact same thing as $item_info = $item_info . ‘String content’;, so all you need is to check whether or not this variable exists: if (!isset($item_info)) { $item_info = ”; } … Read more