Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove Prices


ossory

Recommended Posts

Not sure how you could setup payment types without showing the price or shipping cost? Your best bet is to have the order emailed to you and you send out a payment link from paypal but you wouldn't need this cart to do that? You don't want to show the subscription cost in your cart? or on the invoice?

Link to comment
Share on other sites

I have come across this request in several places now and for different shopping cart software and have even posed the question myself on several forums. I think I will trying aiming the issue at the developers.

 

In my case there is no payment to be made online at all. I think some of what toygunz said sums us up as follows...

 

.....Your best bet is to have the order emailed to you ... just what we need ....and you send out a payment link from paypal .... not required - we don't have a need for online payments .... but you wouldn't need this cart to do that? .... true but it seems overkill to hire a programmer to write essentially the same thing minus the pricing. If it could just be made configurable to take out the pricing and send an order as email that would solve our problem. Unfortunately I know just enough to make some simple modifications but not enough to program something to our exact requirements.

Link to comment
Share on other sites

I have come across this request in several places now and for different shopping cart software and have even posed the question myself on several forums. I think I will trying aiming the issue at the developers.

 

In my case there is no payment to be made online at all. I think some of what toygunz said sums us up as follows...

 

.....Your best bet is to have the order emailed to you ... just what we need ....and you send out a payment link from paypal .... not required - we don't have a need for online payments .... but you wouldn't need this cart to do that? .... true but it seems overkill to hire a programmer to write essentially the same thing minus the pricing. If it could just be made configurable to take out the pricing and send an order as email that would solve our problem. Unfortunately I know just enough to make some simple modifications but not enough to program something to our exact requirements.

 

Have a look at this contrib which removes both price and "buy now" buttons :

http://www.oscommerce.com/community/contributions,4676

Link to comment
Share on other sites

Have a look at this contrib which removes both price and "buy now" buttons :

http://www.oscommerce.com/community/contributions,4676

 

 

This was very helpful, and seems to work very well. Although there are a couple more pages that need modifying.

 

 

catalog/shopping_cart.php

 

lines 71 - 73 need to be commented out like such:-

 

/* $info_box_contents[0][] = array('align' => 'right',

'params' => 'class="productListing-heading"',

ne'text' => TABLE_HEADING_TOTAL); */

 

also lines 147 - 149 need to be commented out like such:-

 

/* $info_box_contents[$cur_row][] = array('align' => 'right',

'params' => 'class="productListing-data" valign="top"',

'text' => '<b>' . $currencies->display_price($products[$i]['final_price'], tep_get_tax_rate($products[$i]['tax_class_id']), $products[$i]['quantity']) . '</b>'); */

 

catalog/checkout_confirmation.php

 

line 191 needs to be commented out like such:-

 

// echo ' <td class="main" align="right" valign="top">' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . '</td>' . "\n" .

 

 

That's all I can find at the moment.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...