zentaopms/extension/max/product/ext/view/view.feedback.html.hook.php
2023-05-16 10:50:42 +08:00

11 lines
394 B
PHP

<style>
.c-feedback {padding-right: 20px !important;}
</style>
<?php
$html = "<th class='c-feedback'><i class='icon icon-person icon-sm'></i> {$lang->product->feedback}</th>";
$html .= '<td><strong>' . zget($users, $product->feedback) . '</strong></td>';
?>
<script>
$('.pm-detail').find('.detail-content').find('tr:eq(1)').find('td').after(<?php echo json_encode($html)?>);
</script>