How can I echo the information from a custom textfield from the form: 'Organization Information' in ticket-print.tmpl.php?
Can someone please help me with the code?

The following line will echo the Organization name into ticket-print.tmpl.php:
<?php echo $ticket->getOwner()->getOrganization()->getName(); ?>
Var 'name' is actually a standard textfield in 'Organistaion Information'
Now i got some custom textfields like: adress, ordernumber i like to show.

@Dav1d

Easy peasy..

You get the Org, get the entires, get the entry answers, gather all in array using ['name' => 'data'] format, then just display data by the name like so:

<?php
    $values = array();
    $org = $ticket->getOwner()->getOrganization();
    $entries = $org->getDynamicData();
    foreach ($entries as $entry) {
        foreach ($entry->getAnswers() as $a)
            $values[$a->field->name] = $a->display();
    }
?>
<tr>
   <th><?php echo __('Organization Address'); ?></th>
   <td><?php echo $values['address']; ?></td>
</tr>

Note:
The "name" is typically the variable name for the field under Manage > Forms.

Cheers.

thank you very much!

Now I know what I did wrong.
Very happy that it works.

Should I mark this as resolved and close the thread then?

Yes, you can mark this as resolved.

Thanks for helping me out.

ntozier changed the title to [resolved] How to show Organisation Information in ticket-print.tmpl.php.

Glad to help! It's what we are here for.

Write a Reply...