I tried searching and googling... and I found an old post http://www.ubercart.org/forum/support/1452/how_create_block_add_cart but it sounds like things have changed since then...
I want to put in a block something like: "e-book $30 " the price and a add to cart button. How? the best I have so far is...
<?php
<!-- the php tag is just to get the code below to show here in the forum -->
e-book $39.00 <div class="add_to_cart"><form><a href="/cart/add/e-p5_q1?destination=cart"><input type="submit" value="ORDER NOW!" /></a></form></div>
?>There has to be a better way! And I'm hoping a way to have it "find" the right product price and not just $39 in text! 
Thanks for any help.


What you really need to do is make the action of the form be the cart link if you want the button to submit to that URL. That should work out fine.