Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Convert more sales for one particular item..


forummaker

Recommended Posts

Posted

Convert more sales for one particular item during checkout.

I want to add an item description and "add to cart" button at the bottom of the following pages.

checkout_shipping.php

checkout_payment.php

checkout_confirmation.php

 

Here's what I have so for...

I've added the following code as follows:

Find:

<tr>
           <td align="center" width="25%" class="checkoutBarCurrent"><?php echo CHECKOUT_BAR_DELIVERY; ?></td>
           <td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_PAYMENT; ?></td>
           <td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_CONFIRMATION; ?></td>
           <td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_FINISHED; ?></td>
         </tr>
       </table>

	<table><tr>

 

Add below:

<table><tr>
<td align="center">
<?php echo '
<a href="http://mysite.com/directed to item page.php"><center><img src="https://mysite/image.jpg" border="0"></center></a>
';?>
</td>
</tr></table>

 

What I would like to do is have a "add to cart" button that when clicked will add the item to their cart and then direct them back to the shopping cart.

 

When the above code is added to those pages.. it will display a simple image with link below the "confirmation checkout bar".

 

Again, I would prefer to have a "add to cart" button that will add an item to their shopping cart.

Is this possible? Hope this makes sense.

Thanks for any help.

That "Can" you're about to open... has worms!

Don't say I didn't worn ya.

n. pl. cans of worms Informal - A source of unforeseen and troublesome complexity.

Posted

Have a look at www.clubosc.com/clear-cart-add-product.html

 

Remove the following code to make sure that the cart is NOT cleared; $cart->remove_all();

Posted

Have a look at www.clubosc.com/clear-cart-add-product.html

 

Remove the following code to make sure that the cart is NOT cleared; $cart->remove_all();

 

That is just PERFECT!

Thank you!

That "Can" you're about to open... has worms!

Don't say I didn't worn ya.

n. pl. cans of worms Informal - A source of unforeseen and troublesome complexity.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...