I know extra field, But i am talking about transforming them into a new command (so i can use if commands) Dominick
You can use capture for this: Code: {capture name=test assign=myvar} {get_extra_field id=$view fid=11} {/capture} {if $myvar == 'test'} {$myvar} equals test {else} It does not equal test. {/if}
I would do the capture at the top: Code: {capture name=test assign=myfieldone} {get_extra_field id=$view fid=1} {/capture} {capture name=test assign=myfieldtwo} {get_extra_field id=$view fid=2} {/capture} Then use the if statement where you want it to appear in the page.