If you have reorder enablet this is a litle hack to show the reorder only for 2 days
(I have the Multivendor and if the price for dis ordered product change the product price remain the old)
- open the [yourtemplate] customer/views/orders/components/order_repay.tpl
Change this code ( have a automatic scroll funktion if the reorder template are active)
<br />
{* $Id$ *}<br />
{if $order_info.total|floatval && ($order_info.timestamp+60*60*48 >= $smarty.now)}<br />
{literal}<br />
<script type="text/javascript"><br />
//<![CDATA[<br />
$(document).ready(function() {<br />
if ($("#repay_order").length) {<br />
<br />
jQuery.scrollToElm($('#repay_order'));<br />
}<br />
});<br />
//]]><br />
</script><br />
{/literal}<br />
{capture name="group"}<br />
<div id="repay_order"></div><br />
{include file="common_templates/subheader.tpl" title=$lang.repay_order}<br />
{script src="js/cc_validator.js"}<br />
<form action="{""|fn_url}" method="post" name="order_repay_form"><br />
<input type="hidden" name="order_id" value="{$order_info.order_id}" /><br />
<table cellpadding="0" cellspacing="3" border="0"><br />
{foreach from=$payment_methods item="pm" name="pay"}<br />
<tr><br />
<td><br />
<input type="radio" class="radio" id="payment_method_{$pm.payment_id}" name="payment_id" value="{$pm.payment_id}" {if $order_payment_id == $pm.payment_id || (!$order_payment_id && $smarty.foreach.pay.first)}checked="checked"{/if} onclick="jQuery.redirect('{"orders.details?order_id=`$order_info.order_id`&payment_id=`$pm.payment_id`"|fn_url}');" /></td><br />
<td><strong>{$pm.payment}</strong></td><br />
<td> </td><br />
<td>{$pm.description}</td><br />
</tr><br />
{/foreach}<br />
</table><br />
{if $payment_method.template}<br />
<hr />{include file="views/orders/components/payments/`$payment_method.template`" payment_id=$payment_method.payment_id}<br />
{/if}<br />
<div class="right{if !$payment_method.surcharge_value || $take_surcharge_from_vendor} hidden{/if}"><strong>{$lang.payment_surcharge}:</strong> <span>{include file="common_templates/price.tpl" value=$payment_method.surcharge_value class="list_price"}</span></div><br />
{include file="views/checkout/components/customer_notes.tpl"}<br />
<p><br />
{if $payment_method.params.button}<br />
{$payment_method.params.button}<br />
{else}<br />
{include file="buttons/button.tpl" but_text=$lang.repay_order but_name="dispatch[orders.repay]" but_role="action"}<br />
{/if}<br />
</p><br />
</form><br />
{/capture}<br />
{include file="common_templates/group.tpl" content=$smarty.capture.group}<br />
{/if}<br />