Brook

Forum Replies Created

Viewing 15 posts - 616 through 630 (of 4,796 total)
  • Author
    Posts
  • in reply to: Creating a Ticket widget / order form on a page #1151546
    Brook
    Participant

    This reply is private.

    in reply to: Email customization in Event Tickets Plus #1151545
    Brook
    Participant

    You are welcome!

    One more email question–is it possible to include attendee information in the admin order email itself?

    It is possible by writing some code inside of the email template in WooCommerce. We are working on making this easier, but until then you will have to craft your own code for including those details. Best way to start is by examining our own code for the Tickets email, which includes that info. Then copying it into the other template and modifying it to work as expected.

    Does that answer your questions?Cheers!

    – Brook

    in reply to: Recurring event based on date? #1151544
    Brook
    Participant

    This reply is private.

    in reply to: Views not working #1151541
    Brook
    Participant

    This reply is private.

    Brook
    Participant

    Howdy again,

    That’s interesting, I could definitely see that being part of the issue. If you are interested in reimporting I would paste the following snippet at the top of your theme’s functions.php file. Replace the opening “<?php” with this snippet, as this snippet includes that opening tag.

    https://gist.github.com/elimn/13b32fb7763826df78d2

    That will allow you to truly delete an ical event, so that it will get reimported from scratch. if you delete the one event from your screenshots with that snippet in place, and reimport, is it the proper time?

    Cheers!

    – Brook

    in reply to: Using widgets in the dashboard! #1151118
    Brook
    Participant

    Howdy Ricardo,

    I would love to help you with this.

    The first thing you would want to do is grab the reference to that class. This can be done like so:

    $widget_wrappers = Tribe__Events__Pro__Main::instance()->widget_wrappers;
    
    $args = array();
    
    $widget_wrappers->mini_calendar( $args );
    $widget_wrappers->events_list( $args );
    $widget_wrappers->featured_venue( $args );
    $widget_wrappers->event_countdown( $args );
    $widget_wrappers->this_week( $args );

    And that’s you could show each of those widgets. Obviously you probably don’t want to see all of the widgets, so feel free to delete any that are unused.  You will need to populate the $args var with the arguments you’d normally pass to the shortcode.

    And finally, while that will render the HTML for those widgets it might not include all the necessary styling and JavaScript. You might need to manually add some scripts and CSS, you might event to write some of your own, to get them styled right and functioning correctly in WP Admin. Since they are only designed to work on the front end this could be a problem — I don’t know, I’ve never tested them back there. Hopefully not.

    Does that all make sense? Will that work for you? Please let me know.

    Cheers!

    – Brook

    in reply to: Page Not Found #1151113
    Brook
    Participant

    Howdy Caleb,

    I would love to help you with this.

    Just to confirm, is this the guide you have already tried following: Troubleshooting 404 Page Not Found error ? The first step in there, flushing permalinks, is by far the most crucial step when diagnosing issues like this so it is key to make sure you’ve tried that.

    One other thing to try that’s not mentioned in the guide is to double check your settings in WP-Admin > Events > Settings > Display . Make sure that all of the Views that you want shown are enabled, such as List, Month view, etc. Then go down and hit save regardless of whether they were enabled or not. Does that fix it? If not, would you mind flushing your permalinks once more by following that guide? They do not always automatically get flushed, and so sometime you have to manually flush after changing settings like this.

    Cheers!

    – Brook

    in reply to: Calendar Subcription #1151111
    Brook
    Participant

    Howdy Atul,

    Using the iCal Importer it is possible to do basically that. You can already export events from one site as an iCal feed. The iCal Importer allows you to import them into another site.

    In you case you might be interested in setting up a third site that combines the others. That way it is still possible to view the calendars separately if you want to, and then a third calendar will combine all of the events.

    Does that sound like it might be what you’re looking for? If so, do you commonly use recurring events or event tickets? The main caveat with all of this is that iCal files do not contain all of the same information as our plugin, so an event ticket for instance would not transfer from one site to the other.

    Cheers!

    – Brook

    in reply to: styling links in list widget #1151107
    Brook
    Participant

    Howdy Chris,

    I would love to help you with this. Sometimes CSS makes us all feel that way. Would you mind sharing a link to your website page with the widget so that I can help craft the exact CSS rule you’ll need?

    Cheers!

    – Brook

    in reply to: Send ticket on payment complete – mixed cart #1151103
    Brook
    Participant

    Howdy Ingo,

    I would love to help you with this.

    This should be manually possible right now. When payment is received go to the order, click Actions > Resend Order Emails > Tickets.  It will say “resend” regardless of whether it was sent or not. And there you go, customer has their tickets, order status has not changed, and you can move it to complete once you fulfill the rest of the order.

    You could make that happen automatically with a little code too. It’s most on the WooCommerce side. You will just need to tap into one of their hooks that runs when an order is charged. Now check to see if that order contains tickets, if it does run:

    do_action( 'wootickets-send-tickets-email', $order_id );

    And the tickets email will get sent out.

    Does that all make sense? Does that answer your questions? Please let me know.

    Cheers!

    – Brook

    in reply to: just start time… #1151086
    Brook
    Participant

    You are welcome. Yeah we are always trying to make stuff easier to find, but there is just so many facets of the plugin and tutorials that it’s still a bit difficult.

    Thanks for getting back. It was my pleasure. You have a great day too!

    – Brook

    in reply to: Change 'Tickets' to 'Seats' #1150970
    Brook
    Participant

    You are most welcome! Enjoy Event Seats Plus.

    – Brook

    Brook
    Participant

    Howdy,

    I would love to help you with this. I am not sure I fully understand what is happening. Is there any way I could see this in action on your site? I tried the site URL you shared but it is password protected.

    If I can not see it in person, perhaps you could take a screenshot or screepcapture of what’s happening?

    Cheers!

    – Brook

    in reply to: Creating a Ticket widget / order form on a page #1150785
    Brook
    Participant

    Howdy Benjamin,

    That one does not quite apply to your needs. However this mini plugin would:

    tribe-snippet-tickets-shortcode-2016-08-11

    That hides the ticket area from the default location, and add this shortcode: [event_tickets_forms_display] . So install and activate it, then put that shortcode wherever you wanted the tickets to show.

    Does that all make sense? Will that work for you? Please let me know.

    Cheers!

    – Brook

    in reply to: just start time… #1150761
    Brook
    Participant

    Howdy Fabrice,

    I would love to help you with this. I bet you be interested in the function tribe_get_start_time(), which would return the start time of that event, regardless of post data. Does that do the trick?

    Cheers!

    – Brook

Viewing 15 posts - 616 through 630 (of 4,796 total)