Display the last modified date
display the last modified date in your ads like this:
11-11-2011 3-08-31 μμ.png
Here is the way to display the last modified date in the loop-ad.
1. ad this code below into your .css file in section "ad/blog meta icons"
span.refresh{background:url("images/refresh.png") no-repeat scroll 3px -1px transparent;line-height:16px;display:inline-block;}
span.refresh span {padding-left:25px;margin-top:1px;}
2.Copy & paste the code below (in red) into your theme-actions.php, in the end of the <p class="post-meta"> section
<span class="owner"><?php if ( get_option('cp_ad_gravatar_thumb') == 'yes' ) appthemes_get_profile_pic( get_the_author_meta('ID'), get_the_author_meta('user_email'), 16 ) ?><?php the_author_posts_link(); ?></span> <span class="clock"><span>posted: <?php echo appthemes_date_posted($post->post_date); ?></span></span>
<span class="refresh"><span>last modified: <?php echo appthemes_date_posted($post->post_modified); ?></span></span>
---------------------------------------------------------------
Now if you want to display your listings by the modified date order as default, change the code below in your query file in line about 1120-1150:
replace the
$q['orderby'] = 'post_date '.$q['order'];
line with
$q['orderby'] = 'post_modified '.$q['order'];
this is it. i hope someone to find it usefull...