Brook

Forum Replies Created

Viewing 15 posts - 1,486 through 1,500 (of 4,796 total)
  • Author
    Posts
  • in reply to: tribe_get_event_categories #1095239
    Brook
    Participant

    Howdy oni,

    Nice work there. Thank you for sharing the solution with the rest, very much appreciated.

    Let us know if ever need anything else, hopefully we can beat you to the punch and actually provide assistance before you figure it out. šŸ˜€

    • Brook
    in reply to: Event Calendar PREVIOUS-NEXT features not working #1095038
    Brook
    Participant

    Howdy Joel,

    Sorry for making you wait over the weekend to get a response. I truly appreciate your patience.

    I fired up your database on my local server, and it worked perfectly. Even without any snippets what so ever the Month, list, Day views all worked.

    One thing occurred to me for you to try, if you go to WP-Admin > Events > Settings could you try disabling the “Enable month view caching” setting ? This might be part of the cause for why Month view was a lonely holdout and still experienced the issue. If you save that setting then trying paging in Month view again, does it work? If not could you try one more thing to further this line of testing? Download and run this plugin: https://wordpress.org/plugins/artiss-transient-cleaner/ You can uninstall it as soon as it has run successfully. This will make sure the cache was cleared. Now try Month view again, does it work?

    If none of the above worked then we are at our last debugging option, which is unfortunately a bit of a pain. We will need to create a fresh WP install. If your host supports sub domains, perhaps you could create test.durangolearns.com and install WP there. Also copy the The Events Calendar plugins folders into the new site’s plugins folder, but don’t copy your theme or other plugins just yet. Then import a copy of your database like the one you sent into this new site. To make the site recognize the new URL, you might set these wp-config options to equal the new test URL. Now, does paging back and forth work on your new site? If so what happens if you copy the /wp-content/ folder from your old site to the new one and reimport the database again (overwriting the last import you did). Does paging still work?

    • Brook
    in reply to: Formatting of Submit An Event Page #1095005
    Brook
    Participant

    Howdy Matt,

    Were you able to fix this problem over the weekend? I am not seeing that issue on your site in Chrome or Firefox. In both browsers the entire calendar within the drop down displays uncropped, including Sunday.

    – Brook

    Brook
    Participant

    Howdy Diana,

    I can see your latest work. You are almost there! Over the weekend it looks like you listed the complete list of categories in the drop down along with their IDs. This is perfect!
    There is only one step left.

    When you select something from your dropdown and submit it takes you to this URL:

    /events/?tribe-bar-category=[ID]

    However you want it to actually forward you to this URL:

    /events/?tribe_eventcategory%5B%5D=[ID]

    I have not tested this, but I do believe that will be as simply as changing the name of the dropdown in your PHP code from ‘tribe-bar-category’ to ‘tribe_eventcategory[]’. Did that work?

    Cheers!
    – Brook

    in reply to: Can't Load May Calendar #1094997
    Brook
    Participant

    This reply is private.

    in reply to: Attendees list not showing names of attendees #1093875
    Brook
    Participant

    Excellent. We’ll post back once the update is ready. Thanks for your understanding!

    • Brook
    Brook
    Participant

    This reply is private.

    in reply to: no transaction emails #1093372
    Brook
    Participant

    Howdy Calvin,

    I would love to help you with this.

    It sounds like WordPress might just not be able to send emails. Have youĀ received any emails from your WP Install?Ā You might even try a plugin like this to check and see if it’s working:Ā https://wordpress.org/plugins/check-email/

    Please let me know if that looks to beĀ the cause.

    Cheers!

    – Brook

    in reply to: Attendees list not showing names of attendees #1093368
    Brook
    Participant

    Howdy Niko!

    Thanks for reaching out about this. The missing info is definitely a bug, and one we’re working to patch. Sorry forĀ the inconvenience. šŸ™

    This is looking like it will be patched in 4.1.1 if everything goes according to plan, and thatĀ plan is to release in under 2 weeks.Ā If you need a more immediate fix you might downgrade to 4.0.7 for now.

    Does that answer your question?

    Cheers!

    – Brook

    in reply to: pass along dates with tickets #1093346
    Brook
    Participant

    Howdy Ryan,

    I have some good and bad news here. The bad news is this is not really possibly yet without majorly hacking things apart. The good news is that we are working on making this a builtin feature. Likely by version 4.3 of our plugin you will just this feature added without any investment on your part. Basically we will make it so that when a user purchases a ticket you will get notified of which dates they purchased for, and you will then be able to have a separate stock for each occurrence rather than a shared one for all occurrences.

    Does that answer your question?

    Cheers!

    – Brook

    Brook
    Participant

    about your other msg if you reply me early I have no need to buzz you again and again.

    Please do not get me wrong, always feel free to buzz us. šŸ™‚ But, I was just trying to explain thatĀ response times can often be about 24 hours out from your last buzz. This is just how our support and software works. If you have any indication in our documentation promising faster responses than this please let me know so we can correct the error.

    I want to add additional filter filed to the to the filter-bar from events calendar pro just below the map as shown you in the link above please see it and guide me if you can provide code for adding a category filed to that filter would be a great help from your side.

    When you say filter-bar are you referring to this?

    If so now I understand! That is called the “Tribe Events Bar” for some reason. The filters underneath it are called the Filter Bar. This can be a bit confusing.

    If you would like to modify the Tribe Bar that is totally possible. Checkout this tutorial: Modifying the Tribe Events Bar.Ā As you can see the tutorial provides you a framework for how to add a new HTML selector to the bar, and shows you how to capture the output of it. From there it will be up to you to write any custom code you would need for filtering the query based on the input. If I were you I would just sanitize the input then forward them to the appropriate URL. For isntance if you use the Filter Bar to select a category all it does is append the categories ID to the URL:

    ?tribe_eventcategory%5B%5D=37

    If you did that based on redirect you could take advantage of all the existing logic and not have to write much of your own.

    Hopefully the above paragraph doesn’t sound like Greek to you. In order to do what you’re talking about it will require a goodly bit of knowledge in PHP, and so the above paragraph can get a bit technical.

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

    Cheers!

    – Brook

    in reply to: Formatting of Submit An Event Page #1093331
    Brook
    Participant

    The only way to regain full control over the CSS styling is to either modify or strip out the portion of your theme that changes the standard <select> element to a custom <div> powered byĀ JS. Currently it is basically swapping the usual HTML element for one of its own design, and I am not familiar enough with this nonstandard design to modify its width. The design itself forced 100% width on the element, and trying to modify that width is causing whacky behavior. Which is why I was walking you through modify the containing elements width, but as I said there is only so much we can do there.

    The theme author might be familiar enough with this to help you modify, but it might also just be a library they’re using. So in the end even they might advise you to strip it out.

    I’m sorry I can’t be of more help here. If you do have questions about our plugin or applying custom templates though I can definitely speak to that are of expertise. Just let me know.

    Cheers!

    – Brook

    Brook
    Participant

    Thank you!

    I noticed the following in its features section:

    – Open web links and map locations directly in the app

    What this means is that it doesn’t use your built-in web browser. So even if you’re logged-in on Safari, you won’t be logged into the website inside of this app. You will need to relogin inside of this app if the app lets you do that (some clear cookies, preventing permanent login). Or, you could try a different app that opens links inside of Safari. I only have Androids personally so I am not able to make a recommendation on iPhone apps, but if you’d like one I will certainly check with the team when they’re online. Does one of the above options allow you to checkin now?

    Cheers!

    – Brook

    in reply to: Event Calendar PREVIOUS-NEXT features not working #1093325
    Brook
    Participant

    This reply is private.

    in reply to: How to show total stock and #1093135
    Brook
    Participant

    Howdy Cesar,

    I would love to help you with this.

    There is no single function that does this. However, it should be easy to create you own. I’d first start with by copying the source from the function that you quoted:

    [php]

    /**
    * Counts the total number of tickets still available for sale for a
    * specific event.
    *
    * @param null $event
    *
    * @return int
    */
    function tribe_events_count_available_tickets( $event = null ) {
    $count = 0;

    if ( null === ( $event = tribe_events_get_event( $event ) ) ) {
    return 0;
    }

    foreach ( Tribe__Tickets__Tickets::get_all_event_tickets( $event-&gt;ID ) as $ticket ) {
    $count += $ticket-&gt;stock();
    }

    return $count;
    }[/php]

    In there you will notice it is counting theĀ $ticket->stock(); integer. Well there are a coulpleĀ other options available:

    $ticket->qty_sold();
    $ticket->qty_pending();

    If you want it to include sold tickets as well as pending, and of course the stock available, then I would count all three of those. Just rename the function, add each of them to the total, and you’re golden.

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

    Cheers!

    – Brook

Viewing 15 posts - 1,486 through 1,500 (of 4,796 total)