Sergio
Sergio

Reputation: 822

Zen Cart - if this is checkout page

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

Upvotes: 1

Views: 62

Answers (1)

Scott C Wilson
Scott C Wilson

Reputation: 20016

Yes. Use this:

if ($current_page_base == "checkout_shipping") {

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

Upvotes: 1

Related Questions