Skip to Content
मेन्यू
This question has been flagged
5 Replies
1323 Views

Hi all.

I have install odoo 17, (Self hosted), to how to remove that "Powered by Odoo" from point of sales receipt, I search google but everywhere I found was about remove branding from web.

here is image

https://imagebin.co/images/pos-receipt-powered-by-Odoo-1.png

Avatar
Discard
Best Answer

Hi,


If you want to remove it completely from the source (for example, if it's hardcoded), you can override the XML template.


Use the following code


<template id="OrderReceipt" inherit_id="point_of_sale.OrderReceipt">

    <xpath expr="//div[@class='pos-receipt-order-data']" position="replace">

        <div t-esc="props.data.name" />

        <div id="order-date" t-esc="props.data.date" />

    </xpath>

</template>


This will remove the 'Powered By Odoo' Session from the pos receipt.


* Ensure your POS session loads the custom template by restarting the POS session and updating the assets.


Hope it helps

Avatar
Discard
Best Answer

You can remove the "Powered by Odoo" branding from the POS receipt using the following Odoo modules:

     🚫 Hide Powered by Odoo (v13.0)

Avatar
Discard
Best Answer

You can remove the "Powered by Odoo" from the POS receipt using this module:

🔗 https://apps.odoo.com/apps/modules/18.0/pos_logo_as_company_logo

It replaces the Odoo branding with your company logo.

Avatar
Discard
Best Answer

Hi @Muhammad Zubair Riaz

Kindly check this custom De branding module to remove the "Powered by Odoo"

https://apps.odoo.com/apps/modules/17.0/ewall_base_personalized

Hope this helps! Please let us know if you have any queries about this (contact@ewallsolutions).com)

Avatar
Discard
Best Answer

Hi,


To remove the "Powered by Odoo" text from the Point of Sale receipt, you need to achieve this through a custom module, as it cannot be done directly from the user interface.


You can inherit the template point_of_sale.OrderReceipt (file path: point_of_sale/static/src/app/screens/receipt_screen/receipt/order_receipt.xml) and make the required changes in your custom module.


I hope this helps!


Thanks.

Avatar
Discard