Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example, the following embed code will display a message at the bottom of the registration page. You can use the {% debug %} tag to display all data available. Note that the data available will change depending on what stage in the order process you are.

Code Block
languagephp
{% if order_page == "signup/index" %}
<h1>We are on the signup page</h1>
{% endif %}

...