Tickera
Forum Replies Created
-
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] PDF ExportFor larger attendee list you should use CSV Export add-on – http://tickera.com/addons/csv-export/
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Plugin Features InquiryHi,
A. Do you have in plan to use offline payment method? Because if you are using other payment gateways (Paypal, Stripe, etc.) there are no needs to be payment reminders since the customer has already paid the ticket.
B.That feature is on our feature list. You can expect it in feature updates.
C. Tickera has that option 🙂
D. Tickera has that feature, as well. You can export list (PDF and CSV)Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Tickets for multiple eventsWe have in plan to add this feature 🙂
As you can see – https://wordpress.org/plugins/tickera-event-ticketing-system/changelog/ we are adding new features every couple of days, so you can expect that feature very soon.
If you have any other suggestion feel free to send us at support@tickera.comForum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] How to edit confirmation pageYou can update Tickera now to 3.1.6.4 version where we added additional hooks. So you can do as following:
add_action( ‘tc_track_order_confirmation’, ‘my_track’, 10, 3 );
function my_track( $order, $payment_info, $cart_info ) {
global $tc;$cart_info = isset( $_SESSION[ ‘cart_info’ ] ) ? $_SESSION[ ‘cart_info’ ] : $cart_info;
$reference = $order;
$order = tc_get_order_id_by_name( $order );
$order = new TC_Order( $order->ID );$status = $order->details->post_status;//order_paid, order_received
$amount = $tc->get_cart_currency_and_format( $order->details->tc_payment_info[ ‘total’ ] );do_shortcode(‘[affiliate_conversion_script amount=”‘.$amount.'” description=”Order #’.$reference.'” context=”Confirmation Page” reference=”‘.$reference.'” status=”‘.$status.'”]’);
}Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] How to track referrals?You can update Tickera now to 3.1.6.4 version where we added additional hooks. So you can do as following:
add_action( ‘tc_track_order_confirmation’, ‘my_track’, 10, 3 );
function my_track( $order, $payment_info, $cart_info ) {
global $tc;$cart_info = isset( $_SESSION[ ‘cart_info’ ] ) ? $_SESSION[ ‘cart_info’ ] : $cart_info;
$reference = $order;
$order = tc_get_order_id_by_name( $order );
$order = new TC_Order( $order->ID );$status = $order->details->post_status;//order_paid, order_received
$amount = $tc->get_cart_currency_and_format( $order->details->tc_payment_info[ ‘total’ ] );do_shortcode(‘[affiliate_conversion_script amount=”‘.$amount.'” description=”Order #’.$reference.'” context=”Confirmation Page” reference=”‘.$reference.'” status=”‘.$status.'”]’);
}We have that feature on our roadmap 🙂
You can expect to see that in the upcoming updates.Try to navigate to Tickera>Setting>General>Menu and set “Show link to Cart in Menu on the front automatically” to No.
Then, if you prefer the Cart Page to be in the Menu, go to Appearance>Menus and manually add the Cart page into the Menu.
Let me know if you manage to fix the issue 🙂
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Spam mailTry to use domain mail.That should prevent mails getting blocked as spam.
You can also install a SMTP plugin (for example – https://wordpress.org/plugins/easy-wp-smtp/) since sending email via SMTP can be more reliable.Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Changing stylesYou can easily do that with css.
If you are our premium user, please open a support ticket and we will be glad to help you with that.
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Page owner/creator issueI’ll mark this one as resolved
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Page owner/creator issueHi strehlst,
we haven’t set any author ID when creating the pages so WP obviously took a default one. In the new version we just uploaded we set current user id so now it should be all fine.
Check the new version, delete the “old” pages (even from the trash) and recreate the pages if you want.
Cheers!