15th - July, 2010 (term and conditions settins on checkout page + stock management)
---------------------------------------------
index.php
library/includes/checkout_cart.php
library/includes/checkout_cart_2.php
library/includes/admin_setting.php
library/functions/general_functions.php
library/functions/cart.php

9th - July, 2010 (stock management)
---------------------------------------------
index.php
library/includes/cart_detail.php
library/functions/general_functions.php

3rd - July, 2010 (digital product download issue - solved)
---------------------------------------------
index.php

1st - July, 2010 (auto login while registration)
---------------------------------------------
library/includes/registration.php

30th - June, 2010 (email notifications problem)
---------------------------------------------
library/includes/admin_notification.php
library/includes/admin_order_detail.php
library/includes/payment.php
library/includes/ipn_process.php
library/includes/cancel.php
library/includes/return.php
library/includes/ordersucces.php


25th - June, 2010 (stock management problem on product detail page - solved)
---------------------------------------------
library/functions/general_functions.php
library/functions/product.php

23th - June, 2010 (email notification problem solved)
---------------------------------------------
library/includes/admin_notification.php
library/includes/admin_notification_edit.php
library/includes/payment.php -- guest checkout problem - solved

22th - June, 2010 (image upload problem in wp 3.0)
--------------------------------------------
functions.php


14th - June, 2010 (affiliate setting)
--------------------------------------------
library/includes/affiliates/set_affiliate_share.php

13th - June, 2010 (custom affiliate links formatting)
---------------------------------------------
library/includes/product_detail.php
library/functions/custom.php


9th - June, 2010 (email UTF-8 format)
---------------------------------------------
library/functions/general_functions.php


7th - June, 2010 (product attributes insert and tinthumb - solved)
---------------------------------------------
upload/index.php
upload/upload.php
library/functions/custom.php
thumb.php


7th - June, 2010 (add to cart while 2 add to cart buttons are there)
---------------------------------------------
library/includes/checkout_cart_2.php
library/includes/checkout_cart.php


3rd - June, 2010 (rss feed on detail page)
---------------------------------------------
library/includes/product_detail.php

22th - May, 2010 (wp 3.0 changes - custom menu navigation - { header  widget },  Theme Compatibility   )
---------------------------------------------
header.php
style.css
skins - folder all css
library/css/dropdownmenu.css

library/functions/widget_functions.php
library/functions/admin_style.css
library/functions/admin_functions.php


7th - may, 2010 (shipping address wrong in order)
---------------------------------------------
library/functions/general_functions.php

22th - april, 2010 (localization changes)
---------------------------------------------
product_menu.php
message.php

library/functions --> whole folder
library/localization -> whole folder
library/includes/sidebar_r.php
library/includes/chekcout_cart.php
library/includes/chekcout_cart_2.php


20th - april, 2010 (wp 3.0 changes)
---------------------------------------------
library/functions/admin_functions.php


17th-april, 2010 (SSL - https url enable/disable from wp-admin->general settings on checkout page)
-------------------------------------------------
library/includes/
single_checkout.php
normal_checkout.php
admin_settings.php

library/functions/general_functions.php


17th-april, 2010 (widget content not stable/stored at wp-admin->widgets)
-------------------------------------------------
///if you have any problem with widget, not able to store/add new one, please copy below all code and paste in index.php at very first line and run your site index page, on the next moment you must remove the added code from index.php otherwise your data will lost every time.  NoTE :- this code will remove your some widget data so please take your widget data backup any where so next time it will userful for you. thanks
//-------------------------------------------------------------------------
update_option('widget_widget_posts1',array());
update_option('widget_widget_posts2',array());
update_option('widget_widget_text',array());
update_option('widget_widget_advt',array());
update_option('widget_widget_posts3',array());


changes on 15th April 2010(home page widget feature product wrong/fixed price issue - solved) 
----------------------------------
style.css
library/functions/widgets_functions.php


changes on 13th April 2010(Feedburner subscription widget correction) 
----------------------------------
library/functions/widgets_functions.php


=============================================================
DATA IMPORT PROBLEM AND SOLUTION FOR PRODUCT IMAGES
=============================================================
while export database and image now showing or product detail has gone, 
just export the "wp_postmeta" table from working database and import to the new database.
now place below script in index.php at top and set "$search_val" and "$replace_val" accordingly.
and execute the index page. It will show your all data withour any loss perfect.
=============================================================
<?php
$search_val = 'http://192.168.1.111/project/eshop/';
$replace_val = 'http://templatic.com/eshop_new/';
global $wpdb;
$result =  $wpdb->get_results("select post_id from $wpdb->postmeta where meta_key='key'");
foreach($result as $resultobj)
{
	if($data = get_post_meta( $resultobj->post_id, 'key', true ))
	{
		foreach($data as $key=>$val)
		{
			$data[$key] = str_replace($search_val,$replace_val,$val);
		}
		update_post_meta($resultobj->post_id, 'key', $data);
	}
}
exit;
?>
=============================================================