Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a .tpl that includes another that is responsible for producing a block of code I want to edit. I found out where it was by commenting out the {include...} that produces the content. However, when I hunt for the .tpl file on the filesystem, it does not exist. So where is it really stored?

i.e. {include file="user/content.tpl"} (not located in filesystem)

Is there some hard-coded address for this in some other file? Is there a conditional if: if file doesn't exist, use this one instead?

share|improve this question

1 Answer

up vote 0 down vote accepted

If a file exists is easy:

{if file_exists("../path_to_file.xxx")}
   /* DO STUFF */
{/if}

The filepath in your include can use either an absolute or relativ path, see more examples here -> http://www.smarty.net/docsv2/en/language.function.include.tpl

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.