Brook

Forum Replies Created

Viewing 15 posts - 571 through 585 (of 4,796 total)
  • Author
    Posts
  • in reply to: Facebook Importer ( loading cover ) #1153807
    Brook
    Participant

    Howdy Jazz,

    What you want is not yet possible. We have  talked about making those fields filterable, but I am not sure if that is going to be technically feasible due to upcoming changes. Let me double check on a couple things with our strategist and get back to you on some possible paths forward.

    Cheers!

    – Brook

    Brook
    Participant

    This reply is private.

    in reply to: QR scanner in Community tickets #1153800
    Brook
    Participant

    You are very welcome!

    Cheers!

    – Brook

    in reply to: Filter Bar- Increase width and length of drop down #1153398
    Brook
    Participant

    Howdy Kate,

    I would love to help you work through this.

    You can actually not change the height of select drop downs, that will vary from computer to computer. This is because the computers operating system and web browser will determine the height of all drop downs system wide, web pages are given no control of it. You can however set the width.

    Could you share a link to your website. I could help you out with sharing some CSS to change the width.

    Cheers!

    -Brook

    in reply to: Filter Bar- Increase width and length of drop down #1153397
    Brook
    Participant

    Howdy Kate,

    I would love to help you work through this.

    You can actually not change the height of select drop downs, that will vary from computer to computer. This is because the computers operating system and web browser will determine the height of all drop downs system wide, web pages are given no control of it. You can however set the width.

    Could you share a link to your website. I could help you out with sharing some CSS to change the width.

    Cheers!

    -Brook

    in reply to: Ticket variations #1153391
    Brook
    Participant

    Howdy Christoph,

    I would love to help you here.

    The best way to do that with our current setup would be to add more tickets. If you have three workshops, create three tickets nd set the price appropriately for each.

    We do have a feature request for supporting Woo variations here. Our problem is that we have not been able to get enough feedback from people on how they would be using it, so it is not something on our roadmap just yet. But yours is an awesome example usecase. If you’d like to help further this feature along you should definitely vote on it and maybe chime in with your example.

    Does that all make sense?

    Cheers!

    – Brook

    in reply to: QR scanner in Community tickets #1153386
    Brook
    Participant

    Howdy again Math,

    Your community organizers would definitely have to login to check people in. But they will be able to manage everything from the Community My Events are on the front end, no need to give them access to the backend.

    Does that make sense?

    Cheers!

    -Brook

    in reply to: Apply month filter #1153383
    Brook
    Participant

    Howdy Tommy,

    Sorry if I was not clear, this will definitely require a goodly bit of custom PHP to do. I was just showing you how to add filters to the filterbar, what filters you add will be up to you or a programmer you hire. The example I showed you, especially the Day of the week filter, is getting pretty close to what you want but still quite a bit of different. It’s going to require a decent bit of custom code to turn that into a Month filter.

    If you’re wanting to play the long game there is always the possibility that we would add this as a default filter in some future update. To get started on that track you would want to submit this idea to UserVoice. That route would definitely take a few months though, and it would likely need to garner support from some more folks. So your best route might be contacting a freelancer to build this for you.

    Does that help clarify?

    Cheers!

    -Brook

    in reply to: Strange CSS Override in Photo View #1153378
    Brook
    Participant

    Splendid news! You are very welcome. Let us know if you ever need anythign else.

    Cheers!

    • Brook
    in reply to: License code error #1153375
    Brook
    Participant

    Excellent! Enjoy the calendar Jeff. Definitely let us know if you ever need anything else.

    • Brook
    in reply to: Strange CSS Override in Photo View #1152990
    Brook
    Participant

    Howdy Amy,

    I would love to help you with this.

    If you are trying to change the background color for those this is the CSS I would use on your site:

    #tribe-bar-form .tribe-bar-submit input.tribe-events-button[type=submit] {
     background-color: #000;
    }

    I just tested that out, and it changes the background color to black overriding the current colors. Is that what you were trying to accomplish?

    Like wise this code will change the view as background:

    #tribe-bar-views div.tribe-bar-views-inner, div#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a {
     background-color: #fff;
    }

    Did that do the trick?

    Cheers!

    – Brook

    in reply to: Renewal for expired license #1152986
    Brook
    Participant

    Howdy Andrea,

    There definitely is a discount available. I just reached out to you via email to help you either gain access to the old account, or create a new one with the discount. Let me know if you have any more questions.

    Cheers!

    – Brook

    Brook
    Participant

    Howdy Joseph,

    I would love to help you with this. I am sorry it has been frustrating so far.

    So I choose a different calendar, and now I am getting this error: The server responded with a malformed response. Please see the JS console for more information.

    As that error message indicates we will need to see the JavaScript console for more information. Basically there is a server error happening while trying to import, and we will need to determine what error that is before knowing how to proceed.

    Do you know how to access your browser console? For instance this is how you would do it in Google Chrome. If you have this pulled up, could you copy/paste any error messages from that to here?

    If you don’t know how to access your console would you be willing to create a new temporary admin account on your website and share the login info with me? I will then login, go to the iCal import page, input the URL you shared and hit “Search”. Assuming that’s what you’re doing I can then see the error for myself in my console.  If you wish to go this route please share login info in a private reply below.

    Does that all make sense?

    Cheers!

    – Brook

    in reply to: Filter Bar, Filter Events per Hour no for parts of the day #1152979
    Brook
    Participant

    Howdy Francisco,

    I would love to help you with this.

    That is possible as a modification. I actually wrote a snippet a while back that might suit your needs perfectly:

    https://gist.github.com/elimn/bfcda80db4711aafbb36d708e25fb4b6

    It adds an additional Time of Day filter to your WP Admin > Events > Settings > Filter Bar area, that you can select instead of the original.

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

    Cheers!

    – Brook

    in reply to: Apply month filter #1152977
    Brook
    Participant

    Howdy Tommy,

    This is absolutely possible. The Filter Bar is highly extensible, and you can pretty much anything to it. However, there is no preexising filter that does this, you would have to write the PHP code that would power it.

    If you are the sort of person who writes their own PHP modifications:

    • You will want to create a new class that extends Tribe__Events__Filterbar__Filter and put all of your code inside of it. Then just instantiate it, and it will add itself to the Filter Bar options in WP Admin, so you can set it to show up there.
    • Checkout /the-events-calendar-filterbar/src/Tribe/Filters/ For all the filters we currently have. In particular I think Day of Week will be a helpful template to base your work off of.
    • Below is an example of an snippet that adds itself as I’ve outlined above. This one is a custom time of day filter, but it shows you how to properly instantiate the class after you’ve created it.

    https://gist.github.com/elimn/bfcda80db4711aafbb36d708e25fb4b6

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

    Cheers!

    – Brook

Viewing 15 posts - 571 through 585 (of 4,796 total)