Page Navigation:
The {wysiwyg} tag pair will output the contents of the WYSIWYG element.
{wysiwyg} {value} {/wysiwyg}
Parameters
You can use the following parameters with your {wysiwyg} tag:
strip_tags=
{wysiwyg strip_tags="yes"} <p>{value}</p> {/wysiwyg}
This parameter removes HTML formatting from the value being displayed.
char_limit=
{wysiwyg char_limit="5" strip_tags="yes"} <p>{value}</p> {/wysiwyg}
This parameter shortens the value being displayed. In order to use this parameter, you need to remove the HTML formatting using the strip_tags=”yes”.
Single Variable Tags
The following single variables are available within your {wysiwyg} tag pair:
{value}
Displays the contents of {wysiwyg} element.
{element_name}
Sometimes, you might want to use several wysiwyg elements. The {element_name} tag will help you to determine which wysiwyg element is being displayed.
{wysiwyg} {if element_name=="simple"} <div class="simple">{value}</div> {if:else} {value} {/if} {/wysiwyg}