Frequently Asked Questions
How to remove shipping from receipt in openpos
to remove shipping in receipt total , you can add code below to end of this file your_wordpress_theme/function.php
if(!function_exists('pricechangeable_op_receipt_template_data'))
{
function pricechangeable_op_receipt_template_data($receipt_template,$setting){
$receipt_template = '<table>
<tr class="tabletitle">
<td class="item"><h2>'.__('Item','openpos' ).'</h2></td>
<td class="qty"><h2>'.__('Price','openpos' ).'</h2></td>
<td class="qty"><h2>'.__('Qty','openpos' ).'</h2></td>
<td class="qty"><h2>'.__('Discount','openpos' ).'</h2></td>
<td class="total"><h2>'.__('Total','openpos' ).'</h2></td>
</tr>
<% items.forEach(function(item){ %>
<tr class="service">
<td class="tableitem item-name">
<p class="itemtext"><%= item.name %></p>
<% if(item.sub_name.length > 0){ %>
<p class="option-item"> <%- item.sub_name %> </p>
<% }; %>
</td>
<td class="tableitem item-price"><p class="itemtext"><%= item.final_price %></p></td>
<td class="tableitem item-qty"><p class="itemtext"><%= item.qty %></p></td>
<td class="tableitem item-discount"><p class="itemtext"><%= item.final_discount_amount %></p></td>
<td class="tableitem item-total"><p class="itemtext"><%= item.total %></p></td>
</tr>
<% }); %>
<tr class="tabletitle">
<td></td>
<td class="Rate sub-total-title" colspan="3"><h2>'.__('Sub Total','openpos' ).'</h2></td>
<td class="payment sub-total-amount"><h2><%= sub_total %></h2></td>
</tr>
<tr class="tabletitle">
<td></td>
<td class="Rate cart-discount-title" colspan="3"><h2>'.__('Discount','openpos' ).'</h2></td>
<td class="payment cart-discount-amount"><h2><%= final_discount_amount %></h2></td>
</tr>
<tr class="tabletitle">
<td></td>
<td class="Rate tax-title" colspan="3"><h2>'.__('Tax','openpos' ).'</h2></td>
<td class="payment tax-amount"><h2><%= tax_amount %></h2></td>
</tr>
<tr class="tabletitle">
<td></td>
<td class="Rate grand-total-title" colspan="3"><h2>'.__('Grand Total','openpos' ).'</h2></td>
<td class="payment grand-total-amount"><h2><%= grand_total %></h2></td>
</tr>
</table>';
return $receipt_template;
}
}
add_filter('op_receipt_template_data','pricechangeable_op_receipt_template_data',10,2);
Last updated Wed, Sep 19 2018 6:50pm