Remove header logo in AOR Report

Hi.

I’m running Suitecrm 7.7.5 how to remove header logo in AOR report export PDF?

I also want to run scheduled reports for my reports, but php -f cron.php dosent give me any error in suitecrm.log or apache errorlog.

What to do???

You would be required to modify the code.
The image is set in the controller in modules/AOR/Reports/controller.php .
First line is how it gets it and second line is how it is displayed.


        $d_image = explode('?',SugarThemeRegistry::current()->getImageURL('company_logo.png'));
                <p><img src="'.$d_image[0].'" style="float: left;"/>&nbsp;</p>

To make it upgrade safe create a custom controller which extends the base one and override the action_downloadPDF() function to remove the logo

1 Like