Andras

Forum Replies Created

Viewing 15 posts - 3,256 through 3,270 (of 6,224 total)
  • Author
    Posts
  • in reply to: adding top padding to all events calendar views #1315779
    Andras
    Keymaster

    Heck yeah! So happy to hear that solved it!

    Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new one in the forum and we will be happy to help you out.

    Cheers,
    Andras

    PS: If you like our plugins, and you didn’t yet do so 🙂 we would be happy to receive a review in the wordpress.org repository. Thanks!
    https://wordpress.org/support/plugin/the-events-calendar/reviews/
    https://wordpress.org/support/plugin/event-tickets/reviews/

    PS2: We’d be also grateful if you would give us feedback on your satisfaction with support. Just click on one of the classy looking emojis below. 🙂 If you can spare a few words, that’s even better. Doublethanks!

     

     

    Andras
    Keymaster

    You’re welcome, glad I could give some ideas to move you forward with this.

    Since you marked this resolved I am going to close the ticket. If you need anything else related to this topic or another please post a new one in the forum and we will be happy to help you out.

    Good luck with your project!

    Cheers,
    Andras

    PS: If you like our plugins, and you didn’t yet do so 🙂 we would be happy to receive a review in the wordpress.org repository. Thanks!
    https://wordpress.org/support/plugin/the-events-calendar/reviews/

    PS2: We’d be also grateful if you would give us feedback on your satisfaction with support. Just click on one of the classy looking emojis below. 🙂 If you can spare a few words, that’s even better. Doublethanks!

     

     

    in reply to: Better solution: Event Category check boxes #1315774
    Andras
    Keymaster

    Hey Oliver,

    Thanks for chiming in!

    I absolutely get your point and that was my thinking as well. If it is going to be done, then likely it will be an extension. The feature ticket is in place. I flagged it to the extension team to see if and how it is doable. I’ll let you know once I have more info.

    Cheers,
    Andras

     

    Andras
    Keymaster

    Hi Lou,

    Thanks for getting back to me on that.

    At the moment we don’t have documentation available for hooks and filters. That is something we are working on, but don’t know when it is going to be ready.

    We do have documentation for the functions in the plugins which you can find here.

    As for the separate HTML on the community events submit form, I believe your best bet would be creating a template override for that page / file. Our Themer’s Guide will give you the basics on how to create a template override.

    You will need to create an override for this file:

    wp-content\plugins\the-events-calendar-community-events\src\views\community\modules\title.php

    And the other option would be via a snippet in your functions.php file, which can possibly check for the view you are looking at and showing different texts based on that, but that would be hardcoded.

    With some more work this could be pluginized.

    Another alternative I can suggest is putting all the texts in the before HTML fields surrounded by divs or spans with different class name. And based on the view you can show / hide the different classes. Though this would likely influence SEO a bit.

    Do any of these help?

    Andras

    in reply to: Error after update #1315770
    Andras
    Keymaster

    It looks like then that specific custom role is missing a capability that would allow it to work.

    Try checking the difference in capabilities between “Events Manager” and “Editor” roles, that might give you a hint which capability is missing.

    Does this help?

    Andras

    in reply to: The Google Maps API daily query limit #1315768
    Andras
    Keymaster

    Stoked to hear that helped solve it! Awesome!

    Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new one in the forum and we will be happy to help you out.

    Cheers,
    Andras

    PS: If you like our plugins, and you didn’t yet do so 🙂 we would be happy to receive a review in the wordpress.org repository. Thanks!
    https://wordpress.org/support/plugin/the-events-calendar/reviews/
    https://wordpress.org/support/plugin/event-tickets/reviews/

    PS2: We’d be also grateful if you would give us feedback on your satisfaction with support. Just click on one of the classy looking emojis below. 🙂 If you can spare a few words, that’s even better. Doublethanks!

     

     

    in reply to: Geolocation + Shortcodes #1315642
    Andras
    Keymaster

    Okay, so on the bundle.

    Although we don’t have the specific bundle you need, what I can offer you is the following:

    Buy the Importer Bundle and I’ll exchange the Filter Bar plugin to Community Events. Just let me know when the purchase is done and with what account.

    Would that work for you?

    Andras

    in reply to: Geolocation + Shortcodes #1315639
    Andras
    Keymaster

    Hello Emanuele,

    Thanks for getting in touch with us and for your interest in our plugins. Let me help you with your questions.

    1. Using the ‘[tribe_mini_calendar]’ and a ‘[tribe_events]’ shortcode on the same page is possible so you should be able to get both. Note however that at the moment using two different ‘[tribe_events]’ shortcodes on the same page is not supported, only the first shortcode will render.

    You can find more info about the widget shortcodes here and about the ‘[tribe_events]’ shortcodes here.

    2. That is unfortunately not a feature that is available out of the box. What you want to achieve might be doable with custom coding, but please note, we are limited in doing and supporting customizations. I can share with you a list of independent developers though who might be able to help you out with this task.

    3. If Events Calendar PRO is active, then that should happen automatically, yes.

    4. I need to check this. Will get back to you.

    Hope this helps. If you have more questions, then let me know. I’d be happy to help.

    Cheers,
    Andras

    in reply to: adding top padding to all events calendar views #1315627
    Andras
    Keymaster

    Hey Georges,

    Thanks for getting in touch!

    It looks like the month view shows correctly. I see the issue on the list view and the day view.

    This css snippet should fix it:

    #tribe-events-pg-template {
    padding-top: 100px;
    }

    Note, this will also influence the single event pages as well.

    If you would like to limit it to the list and day views (and month), then do this:

    .events-archive #tribe-events-pg-template {
    padding-top: 100px;
    }

    Hope this helps, let me know.

    Cheers,
    Andras

    in reply to: EA Treating Post Differently Then Legacy Import #1315625
    Andras
    Keymaster

    Hi again,

    I checked what happens on our side.

    Once an event is saved/update tribe_events_update_meta fires, and the usual WP hooks fire as they do for any post that is created/updated.

    Andras

    in reply to: change hover color #1315622
    Andras
    Keymaster

    Hey Terry,

    Thanks for reaching out to us!

    Please note that we are quite limited in supporting customizations. This looks like quick one so I checked it for you.

    To change the background color of today’s cell in month view when you hover over it with the mouse, you can use this snippet:

    .tribe-events-present:hover {
    background-color: red !important;
    }

    Hope this helps.

    Cheers,
    Andras

    Andras
    Keymaster

    Hi Lou,

    Thanks for reaching out!

    I’m not quite sure which extension you mentioned as I didn’t find that in our extensions library.

    However, there is this one that allows you to add custom HTML content to the top of the Community Events submission form.

    Does this help?

    Cheers,
    Andras

    in reply to: EA Treating Post Differently Then Legacy Import #1315616
    Andras
    Keymaster

    Hey Brandon,

    Thanks for getting in touch.

    Are you using the SNAP plugin for auto posting? It would be good to know the inner workings of that plugins to see what it is looking for to post new stuff on social media.

    Once we know that I can check if anything can be done about it, so that it also works with Event Aggregator.

    Let me know.

    Cheers,
    Andras

    in reply to: Email attendee List not collecting info everytime #1315613
    Andras
    Keymaster

    Hello Josianne,

    Thanks for reaching out and I’m sorry about this issue with the attendee information.

    In your system information I see that you are using older versions of all our plugins. After creating a full backup of your site (files and database, just in case) please update the plugins to the latest versions and check if the issue still exists. If this was a bug, likely it has been fixed since then.

    The data itself is saved in the wp_postmeta table where the “meta_key=’_tribe_tickets_meta'”.

    Please also note that if the ticket number is increased on the basket page, then the information for the extra tickets will not be collected. In this case however the first ticket that was added to the basket should still have the extra info.

    Let me know what you get after the update.

    Cheers,
    Andras

    in reply to: Problem with event hover and month scrolling #1315609
    Andras
    Keymaster

    Hello Mark,

    Thanks for using our plugins and welcome to the forums!

    Sorry about this issue with the event “tooltip” not poping up and the pagination. Let me try to help you with that.

    As a first, please switch to a default theme like twentysixteen and check if the issues still exist with that. If it works well with twentysixteen, then there is some code in the theme that you are using that makes these happen. We can try to find that.

    If it also doesn’t work with twentysixteen, then please go through this guide for a full conflict test and let me know the results.

    Thanks and cheers,
    Andras

Viewing 15 posts - 3,256 through 3,270 (of 6,224 total)