• Payment Plugins Poll

    We need your feedback on the need for updated payment plugins. Please go here and give us your feedback.

  • Joomla 5.1

    For running J!5.1 you must install Fabrik 4.1
    See also Announcements

  • Subscription and download (Fabrik 4.1 for J!4.2+ and J!5.1) are working now

    See Announcement
    Please post subscription questions and issues here

    We have resolved the issue with the J! updater and this will be fixed in the next release.

Remove a list column

  • Views Views: 9,844
  • Last updated Last updated:

Navigation

  • In components/com_fabrik/views/list/tmpl/yourtemplate/default_headings.php, you have a variable
    PHP:
    $this->headings.


    This variable is an array, which is keyed on the full element name and whose values contains the headings for the list

    PHP:

    Array
    (
    [jos_element_test___fabrik_internal_id] => fabrik internal id
    [jos_element_test___time_date] => time date
    [jos_element_test___int] => int
    [fabrik_delete] =>
    [fabrik_edit] => edit
    [fabrik_view] => view details
    )
    If you remove an entry from the array the corresponding column will not be rendered, so adding the following code to the beginning of default_headings.php
    PHP:

    unset($this->headings['jos_element_test___time_date']);
    will stop the 'time date' column from showing in the list
Back
Top