Jump to content

[solved] How to edit a theme directly in code.


Recommended Posts

Hello,

 

how can you edit a prestashop theme directly in coding editor? My footer.tpl looks like this

 

 {if !$content_only}
</div>
<!-- Right -->
<div id="right_column" class="column">
 {$HOOK_RIGHT_COLUMN}
</div>
  </div>
<!-- Footer -->
  <div id="footer">{$HOOK_FOOTER}</div>
  </div>
{/if}
</body>
</html>

 

when I edit the file to this

 

 {if !$content_only}
</div>
<!-- Right -->
<div id="right_column" class="column">
 {$HOOK_RIGHT_COLUMN}
</div>
  </div>
<!-- Footer -->
  <div id="footer">{$HOOK_FOOTER} TEST </div>
		<div> TEST ></div>
  </div>
{/if}
</body>
</html>

 

No change takes place (checked the souce code). If some of you are familiar with WP themes, WP would take the code I typed and place it where it is supposed to be.

 

 

Thanks for anwsers

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...