There's been so many references of loop-single.php
I have searched everywhere so many times but still cannot find this elusive file /oc-content/themes/bender/loop-single.php
I use bender 0.9
I want to insert this code there:
$datenow = new DateTime('NOW');
$itemdate = new DateTime(substr(osc_item_field('dt_pub_date'),0,10));
$ddate = date_diff($itemdate,$datenow);
//wait 2 days before item can be renewed
if ($ddate->days >= 2) { ?>
<a href="<?php echo osc_item_renew_url(); ?>" rel="nofollow"><?php _e('ReNew', 'bender'); ?></a>
<span>|</span>
<?php }