So here I am wanting to show some content only on the index page of my site. It’s not the first time I ran into this problem with “Smarty”, and I actually found a solution when I was using X-Cart, which is:
# FTP the file "social.tpl" to the folder "skins/.../customer/"
>>> The file "social.tpl" has only this line of code:
```php
testing
```
# FTP the file "main.tpl" to where it belongs "skins/.../customer/"
# Get an error saying
```php
Warning: Smarty error: unable to read resource: "customer/social.tpl" in /home/sites/MYSITE/docs/classes/templater/Smarty.class.php on line 1095
```
```php
Warning: Smarty error: unable to read resource: "customer/social.tpl" in /home/sites/MYSITE/docs/classes/templater/Smarty.class.php on line 1095
```
i think hes trying to display something only on the first page that loads. for me this helped because i now only put ‘featured products’ on the first page rather than every page. also i put ad’s on the first page and not on pages like categories. this helped! thanks!