If page url = checkout.checkout

I’m creating a dynamic footer and need to find the specific url that cs-cart checks for before serving content.



The URL in question is:

index.php?dispatch=checkout.checkout



I presume it’s something like:

if current_url == {$index_script}?{dispatch} == checkout.checkout



anyone got ideas?

Maybe try:

{if controller == 'checkout'}



Bob

In a php file: if( CONTROLLER == ‘checkout’ && MODE == ‘checkout’)

In a template: {if $controller == ‘checkout’ && $mode == ‘checkout’)