Here is the Solution
Find the Code Below on Line 2458 in ticketing.php file of plugin
foreach ($item as $k => $i)
{
//$nvp['L_PAYMENTREQUEST_0_NAME' . $k] = $i["name"];
$nvp['L_PAYMENTREQUEST_0_NAME' . $k] = $o["messages"]["messageEventName"] . ": Registration";
$nvp['L_PAYMENTREQUEST_0_DESC' . $k] = substr($i["desc"],0,127);
$nvp['L_PAYMENTREQUEST_0_AMT' . $k] = $i["price"];
$nvp['L_PAYMENTREQUEST_0_QTY' . $k] = $i["quantity"];
}
remove the comment from 1st line and add comment to 2nd. Code will become like this.
foreach ($item as $k => $i)
{
$nvp['L_PAYMENTREQUEST_0_NAME' . $k] = $i["name"];
//$nvp['L_PAYMENTREQUEST_0_NAME' . $k] = $o["messages"]["messageEventName"] . ": Registration";
$nvp['L_PAYMENTREQUEST_0_DESC' . $k] = substr($i["desc"],0,127);
$nvp['L_PAYMENTREQUEST_0_AMT' . $k] = $i["price"];
$nvp['L_PAYMENTREQUEST_0_QTY' . $k] = $i["quantity"];
}
SAVE your work.
Now When Tickets/Packages are Purchased, Name of Package Along with Description will be displayed.
Get Rid of Default “Event Name: Registration”
ENJOY: