Encourage users with no posts, to post!
When a new user signs up, by default they are redirected to the 'Dashboard' page. They will see the message "You currently have no classified ads". Well that's obvious, but let's tell them what to do next so they don't hesitate!
Open up
tpl-dashboard.php and look around line
278 to find this code:
Code:
<p class="text-center"><?php _e('You currently have no classified ads.','appthemes');?></p>
Add the 'post an ad' button between the
?> &
</p> like so:
Code:
<p class="text-center"><?php _e('You currently have no classified ads.','appthemes');?><br /><br /><a href="<?php echo CP_ADD_NEW_URL ?>" class="obtn btn_orange"><?php _e('Post one now!', 'appthemes') ?></a></p>
It's a simple mod and has helped new users start posting faster.