Categories
February 18, 2025
Rates Table
'one',
2 => 'two',
3 => 'three',
4 => 'four',
5 => 'five'
];
$rates = get_fields($post_id);
$tables = $rates['table'];
$legalText = "";
if ( $tables ) {
foreach ($tables as $table) {
$sections = $table['sections'];
foreach ( $sections as $section ) {
if ( $section['acf_fc_layout'] == 'table_section' ) {
$legalText = $section['table_legal_text'];
//basic table display - for more advanced look at the functions.php collapse or rates functions
$table_data = $section['table_data'];
if ( ! empty ( $table_data ) ) {
$column_count = count($table_data['header']);
$className = $numbers[$column_count].'-columns';
echo '
echo '
| '; echo $th['c']; echo ' |
|
|---|---|
| '.$td['c']." | '.$td['c']." |
';
// Mobile Collapsible Table
echo '
$rowIndex = 0;
foreach ($table_data['body'] as $tr) {
$firstColumn = $tr[0]['c']; // Get the first column as the collapse button text
$collapseId = 'collapseRow' . $rowIndex;
echo '
echo '
echo '
';
echo '';
echo '
';
echo '
echo '
echo '
| ' . $th['c'] . ' | ' . $tr[$colIndex]['c'] . ' |
|---|
';
echo '
';
echo '
';
echo '
';
echo '
';
$rowIndex++;
}
echo '
'.$legalText.'
';
echo '
'; // End mobile section
}
//end rates table here
}
}
}
}
?>