Edit the product creation date in ThirtyBees and PrestaShop
In this quick tip we will see how to add a new field to the product’s back office in ThirtyBees and Prestashop 1.6, so that we can edit its creation date
Watch the screencast
Code Snippet
{if $product->date_add}
<div class="form-group">
<label class="control-label col-lg-3">
<span class="label-tooltip" data-toggle="tooltip" title="{l s='Change date for product new from.'}">
{$bullet_common_field} {l s='New from'}
</span>
</label>
<div class="col-lg-3">
<input type="text" id="date_add" class="datepicker" name="date_add" value="{$product->date_add|escape:html:'UTF-8'}">
</div>
</div>
{/if}



