Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. {* Assign a category image variable with physical path to file on server - NOT browser path! *}
  2. {assign var="category_thumbnail" value="/home/cpanelaccountusername/public_html/img/c/{$GetCategoryIdHere|escape:'html':'UTF-8'}_thumb.jpg"}
  3.  
  4. {* Check if category thumbnail file path exists for this category and show the correct image *}
  5. {if file_exists($category_thumbnail)}
  6. <img class="img-responsive" src="{$img_ps_dir}c/{$GetCategoryIdHere|escape:'html':'UTF-8'}_thumb.jpg" alt="{$GetCategoryTitleHere|escape:'htmlall':'UTF-8'}">
  7. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement