重複の可能性:
PHP foreach()は最後の50アイテムのみを返します
そこから最後の2つのレコードだけが必要です。以下のコードは、すべてのレコードを返します。ありがとうございました
<?php
foreach ($fields as $field) {
$type = $field['s_type'];
$label = $field['s_label'];
$value = Attributes::newInstance()->getValue($item_id, $field['pk_i_id']);
if ($type == 'checkbox') {
if ($value == 'checked') $value = 'Yes';
else $value = 'No';
}
?>
<tr>
<td style='width: 150px;'><?php _e($label, pg); ?></td>
<td style='width: 150px;'><?php _e($value, pg); ?></td>
</tr>
<?php } ?>