voanhkhach
Forum Replies Created
-
Forum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] help me border and padding tableThanks you very much
<?php
$rows = get_field(‘repeater_field_name’);
if($rows)
{
echo ‘<table class=”table”>’;foreach($rows as $row)
{
echo ‘<tr>’;
foreach ( $row => $fields )
{
echo ‘<td>Channel:’ . $fields[‘channel_link’] .’, Link:’ . $fields[‘link_live’] .’, etc</td>’;}
echo ‘</tr>’;
}echo ‘</table>’;
}
?>i have try with this code but it report error whitepage.
i have try $row as $key => $fields but i receive same this picture
https://oi60.tinypic.com/6igns1.jpgi think it can’t doing with my request
Forum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] help me border and padding tablethis is my code
<?php $rows = get_field('repeater_field_name'); if($rows) { echo '<table class="table">'; foreach($rows as $row) { echo '<tr>'; foreach ( $row as $key => $value ) { echo '<td>Channel:' . $value['channel_link'] .', Link:' . $value['link_live'] .', etc</td>'; } echo '</tr>'; } echo '</table>'; } ?>
i have use your code but it get value not true
i want display Value in a table and link and a table
you can see pichttps://oi62.tinypic.com/289l8nb.jpg https://oi60.tinypic.com/6igns1.jpg https://oi59.tinypic.com/2a6petw.jpg
Forum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] help me border and padding tablei have try with your new code but
it not sucess
you can see
it display
https://oi60.tinypic.com/357rs5t.jpgForum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] help me border and padding tableyes i want display repeatfield in table
Forum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] help me border and padding tablethanks you
but i can’t apply it to field
can you help me add to this code<?php $rows = get_field('repeater_field_name'); if($rows) { echo '<ul>'; foreach($rows as $row) { echo '<li>sub_field_1 = ' . $row['sub_field_1'] . ', sub_field_2 = ' . $row['sub_field_2'] .', etc</li>'; } echo '</ul>'; } ?>