Options
Universal Options
All Theme API calls have these options.
- return: when set to true, 1, or on, this option forces the tag to return the value instead of displaying/echoing the value to the page. Alternatively, prefix the tag parameter with get to get the same effect. All theme api tags that return a boolean value will return by default.
- echo: when set to false, 0, or off, this option forces the tag to display the value to the page. This is the default for all non-boolean tags.
- is: when set to true, 1, or on, this option will evaluate the return of the theme api call as a boolean true or false value. See how values are converted to boolean.
Examples
<?php shopp('customer','firstname'); ?>
Ben
I’ve just been fiddling about with this for a customer and see that if you want to return just the value, and not an input, you can add the option
mode=value
, just like with ‘info’ fields.Really useful and would be worth adding to the options in this entry and all others that apply when someone has time!
You must be logged in to post a comment.