Advertisement
lorro
Sep 15th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. lines 39 - 46 become:
  2. foreach( $notes as $note ) {
  3. if( $note->customer_note ) {
  4. } else {
  5. print '<li class="order_private_note">';
  6. $date = date( 'd/m/y H:i', strtotime( $note->date_created ) );
  7. print $date.' by '.$note->added_by.'<br>'.$note->content.'</li>';
  8. }
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement