iscontinue Element
Stop processing the current item in the loop and start the next item in loop.
The <iscontinue>
tag differs from the <isnext>
tag in that isnext just moves the iterator forward one and continues processing next line of code. <iscontinue>
breaks out of the processing and then moves to top of loop to start processing again, if there are other items to process.
<iscontinue/>
can be used only within an <isloop>... </isloop>
loop structure. It's similar to "continue" in Java.
The following SiteGenesis example shows how to use <iscontinue/>
to filter out the Gift Certificate payment method that is used later in the checkout process: