
Originally Posted by
NullMind
actually, I was just looking at it, and i'm sorry, my custom cart_sidebox is all on the CSS .. so the code is the same as the default one
basically what I'd liek is to instead of just having
I'd liek the entire info that is available on
tpl_reward_points (sidebox)
The easiest would be to copy and paste the code from tpl_reward_points into your custom code. The only line you would need to change would be:
PHP Code:
$content='<div id="'.str_replace('_', '-', $box_id . 'Content').'" class="sideBoxContent">';
add a full stop after '$content' and before the '=' so it reads:
PHP Code:
$content.='<div id="'.str_replace('_', '-', $box_id . 'Content').'" class="sideBoxContent">';