Brook

Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 4,796 total)
  • Author
    Posts
  • in reply to: iCal feed updates #1029927
    Brook
    Participant

    Thanks for marking the answer correct. I am going to archive this topic since it’s resolved.

    Cheers!

    – Brook

    in reply to: Manual #1029926
    Brook
    Participant

    Thanks for marking the answer correct. I am going to archive this topic since it’s resolved.

    Cheers!

    – Brook

    in reply to: Upcoming events and sliders out of order #1029925
    Brook
    Participant

    Good good.

    but random other question – how can I add a category link filter at the top of calendar listings? (The kind you see often in portfolios

    That is probably the free community built plugin The Events Calendar Category Colors. If you download it to your site and walk through the install steps, you will get that lovely list. Based on those screenshots is that what you’re thinking of?

    Cheers!

    – Brook

    in reply to: Search term is cleared when Next Page link is clicked #1029924
    Brook
    Participant

    Howdy Graphic,

    Thanks for sharing the details of your test. The first thing I would do in your shoes is contact Enfold. They should be made aware of the bug in their theme. They will likely be keen to fix it as soon as they have the resources, and then will release an updated version of Enfold you can download.

    I will also reach out to  our developer that knows that team at Enfold and see if he wasnt to reach out as well, but typically getting involved through those administrative channels can take a bit longer. So if I were you I would open up a topic on the Enfold forums now and not wait.

    Does that sound like a plan?

    Cheers!

    – Brook

    in reply to: How to customize the upcoming events loop #1029923
    Brook
    Participant

    Howdy Christian,

    I am sorry we were out for the weekend. But I am back now! Thanks for sharing the link.

    I actually am seeing those recurring events on your website. Tax installments and returns on the 30th. However, your site does appear to have the setting “Show only the first instance of each recurring event” checked. When this is checked you will only see the first occurrence as we are now. Perhaps you wish to uncheck it and hit Save? It can be found in WP-Admin > Events > Settings, under the label “Recurring event instances”.

    Does that work?

    Cheers!

    – Brook

    in reply to: Quantity UP / DOWN option not displaying correctly #1029921
    Brook
    Participant

    Howdy Darren,

    Good question. That is puzzling. It seems like your theme has a WooCommerce integration, but it might be outdated. Old versions of Woo used a different style of up/down button. Simply updating your theme might fix it if  it is out of date and the theme author has since updated it.

    Assuming that’s not an option, you could still dabble with this. Those buttons use some unique CSS that is going to be a bit difficult to modify. But I was able to undo some of it and make them behave more normally with this:

    .tribe-events-tickets .fs-number-arrow {
    position: relative;
    padding: 0;
    display: inline-block;
    }

    The real key there is changing the postion:relative. You might be try to position the buttons else where though, and wherever you do wish to position them I leave up to you and your CSS. But at least the above should get them working again.

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

    Cheers!

    – Brook

    in reply to: Google Maps issues #1029918
    Brook
    Participant

    Howdy Andres,

    I would love to help you with this. Would you mind logging in first so I can verify your support access? Or, if you lack access to the premium support forums here, don’t forget about the volunteer community on WordPress.org: The Events Calendar.

    When you do open a topic there or login here, would you mind doing a conflict test as well? This looks like the result of a JS conflict. If we know what is causing the conflict, we can begin researching a solution. This guide walks you through how to test for a conflict, and then identify what is conflicting.

    Does that all make sense?

    Cheers!

    – Brook

    in reply to: Upcoming Events List too large #1029916
    Brook
    Participant

    Howdy David,

    I would love to help you with this as best I can. This will actually be highly dependent upon the theme you are running. I see your server is “localhost”. Fair enough. But without being able to see the theme I can only offer the most generic advice. 🙁

    You will need to adjust your theme’s stylesheet to decrease the padding. Typically padding comes from large padding or margin settings in CSS. In order to find what is causing it, use your browsers inspector. Once you have found what is causing the padding, examine the CSS rule applied to that element in the inspector, then craft an empty rule that is more specific than it and decrease the padding or spacing. Typically you can craft a more specific rule by simply prepending ‘body ‘ to the original rule.

    Understandably the above paragraph might not make sense if CSS if not your forte. That being the case, can you share a link to your site when its pushed to a server? We are not always able to write CSS for you as thats technically outside our scope of support, but sometimes we can. And I’d love to give it a whack if I was able to use my browsers inspector on your theme.

    Cheers!
    – Brook

    in reply to: strtotime() error #1029914
    Brook
    Participant

    Howdy Terri,

    Thanks for getting back and summarizing what you’ve tried. I did read through the past topic, I appreciate the full background.

    To me the error seems clear – the php function strtotime expects an argument, and there is none on line 1072. Regardless of what in my particular setup triggers that piece of code – it’s a flawed line.

    This is about to get technical. The array passed to array_map should contain strings, each string being a date. Then array_map calls the function strtotime for every string, passing it the string as an argument.

    However, I can picture one edge case where that does not happen – when the array is empty. I am not sure if this is dependent upon the PHP version or not, but it seems possible that in some version of PHP is the array is empty strtotime may still get called and passed something like null. A weird thing for PHP to do, but sometimes PHP is weird.

    Would you mind testing my hypothesis? Could you try replacing that line:

    $excluded = array_map( 'strtotime', self::get_excluded_dates( $event_id ) );

    With these lines:

    $excluded_dates = self::get_excluded_dates( $event_id );
    
    if ( !empty( $excluded_dates ) ) {
    	$excluded = array_map( 'strtotime', $excluded_dates );
    } else {
    	$excluded = array();
    }

    Now see if you stop getting new errors or useless exclusions added. Does that work?

    Cheers!

    – Brook

    in reply to: Remove end time for events- for multiple dates #1029912
    Brook
    Participant

    Howdy Charu,

    I would love to help you with this.

    The second function listed in that article is actually meant to hide the endtime on multiday events. Did you try following that tutorial yet? Is it not working for you? If so, can you please specify which view is still showing the end time, and perhaps share a link to the page or event so I can inspect how you have setup the event.

    Cheers!

    – Brook

    in reply to: Ticket revenue not showing correctly #1029879
    Brook
    Participant

    Howdy Dirk,

    You are always welcome back here! We appreciate your feedback and helping us find bugs, especially in the new product.

    I assigned your topic here to myself and the first thing I did was try to reproduce it locally. But I actually encountered the fatal error bug from your other topic. This is preventing me from helping reproducing your new issue.

    Josh is taking this ticket from me since he is not seeing that fatal error, and he can try to test for this issue and help you debug it if needed. In the mean time I am going to log the fatal error bug you reported earlier so our devs can take a look at it, and see if we can’t patch in a future Community Tickets version.

    Thank you again! Let us know if you have anymore questions in the interim.

    – Brook

    in reply to: Black Friday / Cyber Monday deals? #1029696
    Brook
    Participant

    Howdy Alan,

    We are indeed going to run a Cyber Monday sale. I have not seen any mention of the amount of the discount just yet, but I know that last years was pretty good.

    Does that answer your question?

    Cheers!

    – Brook

    in reply to: Upcoming events and sliders out of order #1028765
    Brook
    Participant

    Howdy Pixel,

    No need to apologize. I am just happy you were able to find the conflicting plugin, sometimes that can be a pain.

    Just to be clear, is everything working how you need now? If sounds like you are happy with leaving the Reorder plugin disabled. Is there anything I can still help you with?

    Cheers!

    – Brook

    in reply to: Refund possibility? #1028759
    Brook
    Participant

    This reply is private.

    in reply to: Mandatory Categories #1028751
    Brook
    Participant

    Howdy Tony,

    I would love to help you with this. It sounds like you are trying to make categories a required field in Community Events. Have you seen this tutorial? Adding Required Fields to Community Events. It outlines how to modify the required fields. Depending on your PHP level, it might not prove super simple to follow. The field itself is mentioned in the tutorial only briefly, and it’s key is ‘tax_input’. If of your contains an array, and you could check how the count of items within the categories array.

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

    Cheers!

    – Brook

Viewing 15 posts - 2,131 through 2,145 (of 4,796 total)