Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

removing "shipping address"


jayson

Recommended Posts

My site is a COD (cash on delivery) how do I remove the"shipping address"? I looked at about 6 areas that I thought was where it was at, no luck, anything that was a .php file with the word "checkout" in it.

 

onon the order confirmation page, I would like to remove

 

Delivery Address (Edit)

john doe

123 main street

Saint Paul

Saint Paul, MN 55104

United States

"since it is COD I do not need this"

 

and

 

Payment Method (Edit)

Cash on Delivery

 

"same as above, the items are COD" I want the EDIT button to be removed"

 

Thanks

Link to comment
Share on other sites

[replying to my own post]

so, I take it that after a day, no one know the answer to this question, and as you noticed, I was patient, I did not do the rude "bump". So can anyone here out of the 76000 user give me an anwer..

 

Thanks

Link to comment
Share on other sites

[replying to my own post]

so, I take it that after a day, no one know the answer to this question, and as you noticed, I was patient, I did not do the rude "bump". So can anyone here out of the 76000 user give me an anwer..

 

Thanks

 

 

hey,

 

i needed to take out the shipping page too. i found this posted somewhere, but i can't remember exactly where.

it worked just fine for me.

 

If you really want to avoid seeing the shipping confirmation page altogether, go to /catalog/includes/classes/shopping_cart.php, line 316

 

function get_content_type() {

$this->content_type = false;

 

and replace the code with:

 

function get_content_type() {

return $this->content_type = 'virtual';

 

This will take you straight to Payment Information.

 

don't forget to back up your files first :thumbsup:

 

hope this helps

here's my site. it's on test mode so you can test it and see how it skips the shipping page.

My Webpage

Link to comment
Share on other sites

hey,

 

i needed to take out the shipping page too. i found this posted somewhere, but i can't remember exactly where.

it worked just fine for me.

 

If you really want to avoid seeing the shipping confirmation page altogether, go to /catalog/includes/classes/shopping_cart.php, line 316

 

function get_content_type() {

$this->content_type = false;

 

and replace the code with:

 

function get_content_type() {

return $this->content_type = 'virtual';

 

This will take you straight to Payment Information.

 

don't forget to back up your files first :thumbsup:

 

hope this helps

here's my site. it's on test mode so you can test it and see how it skips the shipping page.

My Webpage

 

dude your the best, that did the job, many thank

let me know if you ever want to scope out my site :D :D :D :D :D :D :D :D :D

Link to comment
Share on other sites

dude your the best, that did the job, many thank

let me know if you ever want to scope out my site :D :D :D :D :D :D :D :D :D

 

 

hehe no problem, but real thanks goes to Devosc. another member kindly directed me to his post for removing the Shipping part.

 

:D

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...