Project:
uc_upsellCategory:
feature requestVersion:
Ubercart 1.x-devPriority:
normalStatus:
activeI want to display the related items before reactions.
But, the description of a product and the reactions aren´t blocks, they are just a part of the page.
Someone knows a way...
See http://www.igadgets.be/nl/silverlit-picooz
Refinement:
If I give it a weight of -10, then it is also placed below on the page.
It is the only block.



Re: Display related items before reactions on product page
Hi, you should be able to do this within your template. You can specify, using page.tpl.php or node-product.tpl.php, where in your layout the Upsell block is located. For instance, on my site I use this code:
<?php/* Upsell Block */
if (isset($uc_upsell) && $uc_upsell != "") {
print $uc_upsell;
print '<br style="clear: both;" />';
}
?>
I can place this anywhere on my page, and then use CSS to refine the placement.
Hope this helps.