Different data based on current Niche

From Adult Web Scripts Wiki

Jump to: navigation, search

From 1.3.0 you can define any number of Custom Tags for each niche and embed those instead.

PHP

  <?php if (zestoi_val('niche') == 'girls'): ?>
    html for girls banner goes here
  <?php else: ?>
    html for default banner goes here
  <?php endif; ?>

Smarty

  {decode_url var=decode}
  {if $decode.args.niche == girls}
    html for girls banner goes here
  {else}
    html for default banner goes here
  {/if}

from 1.3.0:

  {if $URL.args.niche == girls}
    html for girls banner goes here
  {else}
    html for default banner goes here
  {/if}