Okay, I understand you. Can you help me to display only the contents of 1 field in the hook:
I need to display previously uploaded certificates (which were uploaded at enrollment) in
add_action( ‘mvx_after_shop_front’, ‘extra_setting_fields’ );
function extra_setting_fields() {
global $MVX;
<div class=”panel panel-default panel-outer-heading”>
<div class=”panel-heading d-flex”>
<h3><?php _e(‘Quality certificates’, ‘multivendorx’); ?></h3>
</div>
<div class=”panel-body panel-content-padding form-horizontal”>
<div class=”mvx_media_block”>
/*how can I display previously uploaded certificates here?*/
</div>
</div>
</div>
<?php
}
I need the vendor to see what it has already downloaded before and what has already been verified.
As far as I understand the data is stored in mvx_vendor_fields[4][], but I’m not sure…
Because, at the beginning of the sale of a new product, it is his responsibility to send certificates for the new product and he must know exactly what he has already downloaded before.
Please help me.






