invoice header

Open to all! Ask other shopowners for help.
Post Reply
Omar_one
Senior Contributor
Posts: 679
Joined: Fri Oct 25, 2019 5:06 pm
Phoenix Version: v1.0.8.16
Has thanked: 100 times
Been thanked: 56 times

invoice header

Post by Omar_one »

Hello,
when printing invoice from admin side, the invoice shows the header of the admin
Capture1111.JPG
,

is there any way to remove it from the invoice?

Br
Omar
You do not have the required permissions to view the files attached to this post.


Join The Code Co-op to get access to your library in the Code Co-op Forum
Omar_one
Senior Contributor
Posts: 679
Joined: Fri Oct 25, 2019 5:06 pm
Phoenix Version: v1.0.8.16
Has thanked: 100 times
Been thanked: 56 times

Re: invoice header

Post by Omar_one »

I was override the hMenu file by adding

Code: Select all

 $exclude_pages = array(
		   'invoice.php', 'packingslip.php');
in function listen_injectBodyStart ..
but its not working 1.0.8.16!
any idea why ?
ecartz
Core Team
Posts: 3084
Joined: Tue Nov 05, 2019 6:02 pm
Phoenix Version:
Has thanked: 4 times
Been thanked: 208 times

Re: invoice header

Post by ecartz »

Omar_one wrote: Sat Aug 13, 2022 7:22 pm I was override the hMenu file by adding

Code: Select all

 $exclude_pages = array(
		   'invoice.php', 'packingslip.php');
in function listen_injectBodyStart ..
but its not working 1.0.8.16!
any idea why ?
That seems like half the change. I would expect something like

Code: Select all

if (in_array(basename(Request::get_page()), $exclude_pages)) {
  return;
}
as well. Note that

Code: Select all

if (in_array(basename(Request::get_page()), ['invoice.php', 'packingslip.php'])) {
  return;
}
may be simpler, as it combines both.

Also, https://github.com/CE-PhoenixCart/Phoen ... nu.php#L81 is supposed to prevent the header from printing (on any page). I.e. if you print the invoice, it should not have the header. Nor the footer: https://github.com/CE-PhoenixCart/Phoen ... er.php#L15
Omar_one
Senior Contributor
Posts: 679
Joined: Fri Oct 25, 2019 5:06 pm
Phoenix Version: v1.0.8.16
Has thanked: 100 times
Been thanked: 56 times

Re: invoice header

Post by Omar_one »

thank you @ecartz


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply