Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product title in purchase


MASsIVE

Recommended Posts

how can I get the product title included rather then the site name in the email from a PayPal purchase?

 

Item Title: Company name

 

Should it not be

Item Title: Product name

 

How can I get this to say the product name?

Link to comment
Share on other sites

I believe the PayPal IPN contribution will do what you want.

"Great spirits have always found violent opposition from mediocre minds. The latter cannot understand it when a man does not thoughtlessly submit to hereditary prejudices but honestly and courageously uses his intelligence." - A. Einstein

Link to comment
Share on other sites

Now to figure out how the buyer can download the file after purchase.

 

Any input on this ?

What do you mean?

 

So long as the product does not have a weight and downloads are enabled, the user will be provided a link to download the product.

 

I must be misunderstanding you.

"Great spirits have always found violent opposition from mediocre minds. The latter cannot understand it when a man does not thoughtlessly submit to hereditary prejudices but honestly and courageously uses his intelligence." - A. Einstein

Link to comment
Share on other sites

Ok I installed the PayPal IPn and I get this error

 

Fatal error: Call to undefined function: tep_not_null() in /home/public_html/includes/classes/language.php on line 74

 

I can't understand this one hahahaa

 

 

 

Downloads:

I have in the product attributes all the file anmes to be downloaded, but when I test a file there is no download anywhere in my test account

Link to comment
Share on other sites

Ok I installed the PayPal IPn and I get this error

 

Fatal error: Call to undefined function: tep_not_null() in /home/public_html/includes/classes/language.php on line 74

 

I can't understand this one hahahaa

Add the following to your catalog/includes/functions/general.php file and let me know what happens then.

  function tep_not_null($value) {

   if (is_array($value)) {

     if (sizeof($value) > 0) {

       return true;

     } else {

       return false;

     }

   } else {

     if (($value != '') && ($value != 'NULL') && (strlen(trim($value)) > 0)) {

       return true;

     } else {

       return false;

     }

   }

 }

 

 

Downloads:

I have in the product attributes all the file anmes to be downloaded, but when I test a file there is no download anywhere in my test account

You do not have each of the downloadable files as products?

 

I do not believe that it will work for an attribute.

"Great spirits have always found violent opposition from mediocre minds. The latter cannot understand it when a man does not thoughtlessly submit to hereditary prejudices but honestly and courageously uses his intelligence." - A. Einstein

Link to comment
Share on other sites

Downloads:

I have in the product attributes all the file anmes to be downloaded, but when I test a file there is no download anywhere in my test account

You do not have each of the downloadable files as products?

 

I do not believe that it will work for an attribute.

I think that you have it backwards: *only* attributes can hold the download information. To make a product downloadable, you need to create a downloadable attribute--thus the products_attributes_download table.

 

Just to eliminate the obvious...do you have the files in your downloads directory on the server? Also, if you edit a downloadable attribute, does it bring up the file name that you entered last time?

 

Where is it breaking? I.e. is the link appearing? Can you click on it? What happens?

 

Good luck,

Matt

Link to comment
Share on other sites

The previous download file does not appear when I try to edit the attribute.

 

What im in need is, once the product is purchased and verified the file becomes downloadable for a specific amount of time ie 2 days

 

I have tested it and no download appears anywhere ??

 

Once purchased the buyer via username is able to download the purchased file in there account or somewhere else??

Link to comment
Share on other sites

The previous download file does not appear when I try to edit the attribute.
That's a bug. For now, the work around is to delete the attribute and create a new one with the identical information.

 

Good luck,

Matt

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...