I was just adding a "subscribe to email" button to the sidebar and it didn't work properly so I removed it. I then saved the sidebar and it completely removed all the content in the sidebar.php file. I always keep a backup of the site and ftp-ed it to our server, but it keeps on automatically erasing the content in the sidebar.php file. I have no idea what is happening. Please let me know if anyone knows what to do. The website is http://www.orangepeel.co.nz and this is the sidebar code:
<!--Default sidebar template-->
<div id="sidecolumn">
<div class="sidebar">
<div class="left"><?php jpf_quotes(); ?>
</div>
</div>
<div class="hr"></div>
<div class="sidebar">
</div>
<!-- Sidebar quick about block -->
<?php if (get_option('vSlider_quickabout_enabled')) { ?>
<div class="hr"></div>
<div class="sidebar">
<?php echo stripslashes(get_option('vSlider_quickabout_text')) ?>
</div>
<?php } ?>
<!-- Show subpages, if available -->
<?php
if (is_page() && $post) {
$current_page = $post->ID;
while($current_page) {
$page_query = $wpdb->get_row("SELECT ID, post_title, post_parent FROM $wpdb->posts WHERE ID = '$current_page'");
$current_page = $page_query->post_parent;
}
$parent_id = $page_query->ID;
$parent_title = $page_query->post_title;
$test_for_child = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = '$parent_id'");
if($test_for_child) {
?>
<div class="hr"></div>
<div class="sidebar">
"><h2><?php echo $parent_title; ?> </h2>
<?php wp_list_pages('sort_column=menu_order&title_li=&child_of='. $parent_id); ?>
</div>
<?php } } ?>
<div class="hr"></div>
<div class="sidebar">
<!-- Categories -->
<h2>What's Happening</h2>
<?php list_cats(true, '', 'name', 'asc', '', true, false, true, true, true, true, 0, '',false,'',$rssimage,'',true) ?>
</div>
<div class="hr"></div>
<div class="sidebar">
<h2>OrangePeel Products</h2>
<p align=center>Customized Vision Boards</p>
<h3 align=center>Vision Board</h3>
<div class="center"><img id="image79" src="http://www.orangepeel.co.nz/wp-content/uploads/2006/12/visionboard-box-opsite.JPG" alt="Start Creating Huge Success in Your Life" /></div>
<h3 align=center>MLM Vision Board</h3>
<div class="center"><img id="image78" src="http://www.orangepeel.co.nz/wp-content/uploads/2006/12/mlmvb_box_opsite.JPG" alt="Start Creating Huge Success in Your Network Marketing Business" /></div>
</div>
<div class="hr"></div>
</div>
Thanks!