Invoice Terms
From PhpCOIN Documentation
In /coin_lang/lang_xxx/lang_config.php are the invoice terms and a bunch of other variables. xxx is the language you are intersted in editing, such as english, german, etc.
Around line 151 you will see
# Invoices Default Terms String (inserted on new if enabled) $_CCFG['INV_TERMS_DEF_LINE_01'] = 'Payment required to be posted / received by closing of due date.'; $_CCFG['INV_TERMS_DEF_LINE_01'] .= ; $_CCFG['INV_TERMS_DEF_LINE_01'] .= ; $_CCFG['INV_TERMS_DEF_LINE_02'] = 'All late payments will be subjected to a 2% late charge.'; $_CCFG['INV_TERMS_DEF_LINE_02'] .= ; $_CCFG['INV_TERMS_DEF_LINE_02'] .= ; $_CCFG['INV_TERMS_DEF_LINE_03'] = ; $_CCFG['INV_TERMS_DEF_LINE_03'] .= ; $_CCFG['INV_TERMS_DEF_LINE_03'] .= ;
This corresponds to three lines for terms, with three lines each. Start at LINE_01 to make your changes, and just work your way down until done.

