Posts: 7
Threads: 1
Joined: Dec 2016
2019-08-27, 04:35:19
(This post was last modified: 2019-08-27, 04:43:28 by st3v3r.)
http://www.laccademiadellamusica.com/
just edited a text on theme page and saved...everything gone away. I can fix only if i go to chance theme
help pls
maybe i need to update getsimple? my version is 3.3.7
many thanks
Posts: 7
Threads: 1
Joined: Dec 2016
fixed removing this > <!--<?php get_nested_navigation(get_page_slug(FALSE)); ?>-->
Posts: 3,491
Threads: 106
Joined: Mar 2010
(2019-08-27, 08:10:39)st3v3r Wrote: fixed removing this > <!--<?php get_nested_navigation(get_page_slug(FALSE)); ?>-->
Instead of using html comments, the proper way to comment out php code is something like:
PHP Code:
<?php /* get_nested_navigation(get_page_slug(FALSE)); */ ?>
Posts: 1,247
Threads: 82
Joined: Feb 2011
Oh, I learned something new.