meramirpur
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Themes and Templates
In reply to: Change ''Continue reading –'Just add the line Where ever you need it. i.e in LOOP.php or in Content.php
<a href="<?php the_permalink(); ?>" class="readmore">Read More</a>Thanks,
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”
Viewing 2 replies - 1 through 2 (of 2 total)