tiiberius Posted November 23, 2016 Share Posted November 23, 2016 Hello, I need to change PayPal Subscription name. This is what need to be done: Change the current format of the PayPal subscription name... from: Company Name - Invoice # to: Company Name - Product Name This was the guidance I received from the support: So looking over the module, you would need to adjust the description portion of the paypal.php module file: $code.='<input type="hidden" name="item_name" value="'.$params['description'].'"> This exact code is in the onetime and recurring subscription portions of the code. What you are seeing from your screenshot is what is dumped from the $params['description'] portion in that code line. However, we do not pass product information over in the params global variable, so you will need to query the database to grab the tblinvoiceitems line item description and pass this into the line I mentioned above which will then show on the Paypal page. How do I call the database and retrieve the tblinvoiceitems, then insert it correctly into value="" field? Thank you in advance. 0 Quote Link to comment Share on other sites More sharing options...
wsa Posted November 24, 2016 Share Posted November 24, 2016 Can you contact me here to we talk more about this 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.