Zen Cart - if this is checkout page

60 Views Asked by At

Does Zen Cart have the functionality to check if this is the checkout page? I know for the home page we can have something like:

<?php if ($this_is_home_page) { ?>
  ......
<?php } ?>

Do they have documentation to search this and other php functionality available?

Thanks in advance.

Sergio

1

There are 1 best solutions below

0
Scott C Wilson On BEST ANSWER

Yes. Use this:

if ($current_page_base == "checkout_shipping") {

note that you may have to global $current_page_base; depending on your context.