====== Inserting Page Specific Content ====== There are already several feature specific templates within the software that you can directly place content into and they would only appear within those features. But there may be times when you have a page template in use across several pages and may only want specific text to appear in specific pages within the system but don't want to create a page template for each page with a little custom content. You can do this using smarty within a page template. The following smarty will allow you to place some specific content on specific pages. Note that we placed most pages in that loop. You can remove options in that loop to show only choices for the pages you want to affect. {if not $smarty.get.a} {elseif $smarty.get.a eq 1 or $smarty.get.a eq "cart"} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 1} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 2} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 3} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 4} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 6} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 7} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 8} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 9} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 10} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 12} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 13} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 18} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 19} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 20} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 21} {elseif $smarty.get.a eq 4 and $smarty.get.b eq 22} {elseif $smarty.get.a eq 5} {elseif $smarty.get.a eq 6} {elseif $smarty.get.a eq 11 and $smarty.get.d eq 4} {elseif $smarty.get.a eq 11 and $smarty.get.d eq 1} {elseif $smarty.get.a eq 11 and $smarty.get.d eq 2} {elseif $smarty.get.a eq 11 and $smarty.get.d eq 3} {elseif $smarty.get.a eq 12} {elseif $smarty.get.a eq 13} {elseif $smarty.get.a eq 14} {elseif $smarty.get.a eq 19} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 135} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 136} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 137} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 140} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 141} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 142} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 143} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 144} {elseif $smarty.get.a eq 28 and $smarty.get.b eq 145} {elseif $smarty.get.a eq 'ap' and $smarty.get.addon eq 'storefront' and $smarty.get.page eq 'list_stores' } {elseif $smarty.get.a eq 2} {elseif $smarty.get.a eq "tag"} {elseif $smarty.server.SCRIPT_NAME eq "/register.php"} {else} {/if} And to focus on one page something like these: {if $smarty.get.a eq 4 and $smarty.get.b eq 1} {/if} {if $smarty.get.a eq 5} {/if} or to display something on all pages BUT the one page mentioned: {if $smarty.get.a neq 4 and $smarty.get.b neq 1} {/if} {if $smarty.get.a neq 5} {/if}