Viewing 1 replies (of 1 total)
  • Plugin Author Johann Heyne

    (@jonua)

    Just use PHP while rendering the table.

    foreach ( $table['body'] as $tr ) {
    
        echo '<tr>';
    
            $i = 0;
    
            foreach ( $tr as $td ) {
    
                $i++;
    
                echo '<td>';
    
                    if ( $i === 1 ) {
                        // cell in first column
                    }
    
                echo '</td>';
    
            }
    
        echo '</tr>';
    }
Viewing 1 replies (of 1 total)

The topic ‘hyperlink to values’ is closed to new replies.