- MSAnsweredHello,
I didn't understand what are you trying to ask. Can you please ask again with details and screenshots.
Thank you - RRAnswered**[Mian Saleem](/u/saleem)** Hi When i Add product there a box named 'Product Details for Invoice' . Its showing front end website also . I don't want show invoice details in front end website.
For better view see screenshot. - MSAnsweredHello,
You can edit the view file `themes/default/shop/views/pages/view_product.php` and remove `$product->details` line around 258
Thank you - RRAnswered**[Mian Saleem](/u/saleem)** <?= $product->details ? '<div class="panel panel-info"><div class="panel-heading">' . lang('product_details_for_invoice') . '</div><div class="panel-body">' . $product->details . '</div></div>' : ''; ?>
<?= $product->product_details ? '<div class="panel panel-default"><div class="panel-heading">' . lang('product_details') . '</div><div class="panel-body">' . $product->product_details . '</div></div>' : ''; ?>
Here is code , i just need off product details for invoice - RRAnswered**[Mian Saleem](/u/saleem)** <?= $product->details ? '<div class="panel panel-info"><div class="panel-heading">' . lang('product_details_for_invoice') . '</div><div class="panel-body">' . $product->details . '</div></div>' : ''; ?>
<?= $product->product_details ? '<div class="panel panel-default"><div class="panel-heading">' . lang('product_details') . '</div><div class="panel-body">' . $product->product_details . '</div></div>' : ''; ?>
Here is code , i just need off product details for invoice - MSAnsweredYes, comment this line or remove it.
- RRAnswered**[Mian Saleem](/u/saleem)** Hi There is another issue, When i download pdf of sell invoice , Unit Price Alignment not right .
See attachment . How can i make it center. - MSAnsweredHello,
Can you please try to change pdf library in system settings. I will check this in future updates.
Thank you - Login to Reply