2 replies [Last post]
pandapouch's picture
Offline
Joined: 08/08/2007
Juice: 54
Was this information Helpful?

Hi there - I'd really appreciate a little help.. Shouldn't be hard, I'm just not that great with this stuff.

Before an update all was fine, then after we updated, the product view went loopy.

The problem is - the size drop down menu and "add to cart" button are at the top of the page rather than at the very bottom.

Where and how can I fix this?

See - http://pandapouch.com/node/86

Thanks.

Cassandra

Nick's picture
Offline
Joined: 08/17/2007
Juice: 95
Re: Problem with Product View after the update

I had the same problem. I downloaded and installed the contemplate module and after playing around with it for awhile I was able to rearrange the items in the page.

Later, I used contemplate to remove everything on my page except for the body, and I just inserted the add to cart function manually throughout the pages.

Example: Latex Examination Gloves by DemeTECH

I put this code on each page:

<?php
    $add_to_cart_node
= node_load(22);
   
$add_to_cart_output = theme_uc_product_add_to_cart($add_to_cart_node);
?>

Whenever I wanted to show the add to cart button, I put in:

<?php
print $add_to_cart_output;
?>
pandapouch's picture
Offline
Joined: 08/08/2007
Juice: 54
Thanks...

Hmm.. Damn I wish it was a button rather than anything having to do with code. Not my specialty.

Thanks

Cass