Loading...
banner plugin Image
woo-image

Table Field Add-on for ACF and SCF

By Johann Heyne

Description

The Table Field plugin is an Add-on that enhances the functionality of the Advanced Custom Fields plugin and the Secure Custom Fields plugin with easy-to-edit tables.

This plugin requires either the Advanced Custom Fields plugin or the Secure Custom Fields plugin!

The table field works with the ACF repeater and flexible field types and supports ACF Blocks for Gutenberg.

Features include optional table headers and captions, support for ACF Gutenberg blocks, adding and removing table columns and rows, and drag-and-drop functionality for reordering.

Translations are available in English, German, Danish, and Polish. You can also contribute your language to the plugin.

There is a Pro version available that offers additional features such as custom default tables, minimum and maximum row and column settings, and improved editing functionalities.

Other Notable Features

Here are a few other notable features of this free Table Field Add-on for ACF and SCF plugin.

check-fill
Table Field
check-fill
Advanced Custom Fields
check-fill
Secure Custom Fields

Screenshots

FAQ

To render the table fields data as an html table in one of your template files (page.php, single.php) you can start with the following basic code example:

$table = get_field( 'your_table_field_name' );  if ( ! empty ( $table ) ) {      echo '<table>';          if ( ! empty( $table['caption'] ) ) {              echo '<caption>' . $table['caption'] . '</caption>';         }          if ( ! empty( $table['header'] ) ) {              echo '<thead>';                  echo '<tr>';                      foreach ( $table['header'] as $th ) {                          echo '<th>';                             echo $th['c'];                         echo '</th>';                     }                  echo '</tr>';              echo '</thead>';         }          echo '<tbody>';              foreach ( $table['body'] as $tr ) {                  echo '<tr>';                      foreach ( $tr as $td ) {                          echo '<td>';                             echo $td['c'];                         echo '</td>';                     }                  echo '</tr>';             }          echo '</tbody>';      echo '</table>'; } 

Contributors and developers

“Table Field Add-on for ACF and SCF” is open source software. The following people have contributed to this plugin.

WPS
Exclamation-Image

7.09

Very Good

Star-Image

Ratings

4.9 out of 5 | 59
History-Image

Version

1.3.34
calendar-Image

Last updated

1 month ago
Star-Image

Active installations

50,000+
Star-Image

WordPress version

6.9.4 or higher
php-Image

PHP version

7.4 or higher
translate-Image

Languages

13

Tags

Acf,Advanced Custom Fields,Scf,Secure Custom Fields,Table