I am very new in Magento.
I want to add some "term & condition" at the bottom of customer invoice.
I know This question is already posted on the portal, But I didn't found any solution yet.
Can anyone explain me how to do that.
I am very new in Magento.
I want to add some "term & condition" at the bottom of customer invoice.
I know This question is already posted on the portal, But I didn't found any solution yet.
Can anyone explain me how to do that.
Copyright © 2021 Jogjafile Inc.
Open the file
app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
and add the below function at the end of the fileNow, you need to call this
insertConditions()
function in thegetPdf()
function like below :PS. I would advice to override the core files instead of changing them directly.