Geoff

Forum Replies Created

Viewing 15 posts - 5,686 through 5,700 (of 10,150 total)
  • Author
    Posts
  • Geoff
    Member

    Hi @Ameet, nice to see you again!

    That is indeed something that has popped up in our feature request forum. We don’t have any plans for that at the moment, but please do add your vote to the request–it needs more votes and having yours would help.

    Thanks,
    Geoff

    in reply to: ERROR 500 when adding new events #1024800
    Geoff
    Member

    Cool, let’s do a test site and test from there. 500 errors are typically the result of something server-related, so if the issue happens on live site, then we should see it on the test site as well.

    When setting up your test site, please install nothing, except The Events Calendar, Events Calendar PRO and Facebook Events. We’ll see if the error continues in those default conditions, then troubleshoot from there.

    Thanks!
    Geoff

    in reply to: show events dates instead of posting dates #1024790
    Geoff
    Member

    Hello @Sandor–welcome to the forums!

    Good question. Do you have access to edit the template where those events are being pulled in? If so, you would be able to modify the portion of the loop that shows the post date and replace it with something like this for events:

    <?php echo tribe_get_start_date(); ?>

    That will display the event’s start date.

    Will that help you get started? Please let me know. 🙂

    Cheers,
    Geoff

    in reply to: Scrolling list of upcoming events #1024778
    Geoff
    Member

    Hello Nicky,

    I’m afraid that the widget is more of a list than a slider. In other words, it will list out the upcoming events rather than show one at a time.

    That said, it is certainly possible to create a slider for events–but that would take a fair amount of custom development that isn’t supported right out of the box.

    Did you have any other questions about the plugin that I can help answer? Please let me know!

    Thanks,
    Geoff

    Geoff
    Member

    My pleasure! Thanks for working with me on this and for your friendliness as well.

    Cheers,
    Geoff

    in reply to: Displaying Recurrence Rule's start time #1024775
    Geoff
    Member

    Hey David,

    In testing this a little further, it looks like tribe_get_start_time does work with recurring instances, at least right out of the box. You should be able to use that and grab the correct time by supplying the event ID.

    Have you made some other customizations that might be interfering? I can’t guarantee I can fix it, but I’d be happy to take a look if you want to share a more complete sample of your code.

    Thanks!
    Geoff

    in reply to: vertical line on events page #1024772
    Geoff
    Member

    Hi @Edwin,

    Are you using the default event template? Head over to Events > Settings > Display and select that template if it’s not already in use and see if that makes a difference.

    If it does, great! If not, then you might be able to override it with this CSS:

    .tribe-events-style-full #main-content .col-9.hb-main-content {
    border-right: none;
    }

    Cheers!
    Geoff

    in reply to: NEXT EVENT LINK IS NOT WORKING #1024765
    Geoff
    Member

    Hi @hemant,

    Welcome to the forums and thanks for getting in touch. Sorry for the trouble here with the next event button, but let’s look at it together.

    I visited this event:
    http://hiindialive.com/event/govardhan-pooja/

    …and was able to click on the next event link at the bottom of the screen. Were you able to resolve the issue on your own? Or is there a different link you’re looking at and you can point me there?

    Thanks!
    Geoff

    in reply to: Event padding #1024762
    Geoff
    Member

    Hi Catherine,

    That code can be put in one of two places:

    • A stylesheet. Create a new CSS file called tribe-events.css and add it to a new folder in your theme (or child theme) directory called tribe_events. Much more on this in our Themer’s Guide.
    • A plugin. The Simple Custom CSS plugin is an alternative way to input your custom styles, if you prefer.

    Will either of these work for you? Please let me know!

    Cheers,
    Geoff

    Geoff
    Member

    Hi Terry,

    Ah, so it is a limitation of the theme. I’m afraid I’m unable to work on a solution on the theme side of things, but perhaps the suggestion from the theme author to update the settings as a workaround would help.

    Or, if you’d prefer the CSS route, you can probably play around with the snippet I provided. The styles are correct; it just needs to target the element correctly…so this is what needs editing:

    .tribe-events-style-full header nav>ul>li.menu-item-208 a:before

    For example, it could be something like this instead:

    .tribe-events-style-full .menu-item-208 a:before

    …or something else altogether. We do have a list of customizers who might be available to help, or perhaps the theme developer can help correct the CSS selector knowing that there is a body class for events pages.

    Sorry, this is about as far as I think I’ll be able to help here in the forums. Let me know if this at least gets you started in the right direction!

    Thanks,
    Geoff

    in reply to: Stop Notifications for Edited Events? #1024759
    Geoff
    Member

    Hey MD, nice to see you again!

    I’m afraid notifications are an all-or-nothing thing. The idea being that the site owner would also want to know if an event that has been submitted and published has also been changed.

    I can see how limiting the notifications to publish status only might be useful–would you be willing to share that in our feature request forum? It would be great to see others add their votes for it as well.

    Sorry for the bad news, but does this at least help answer your question?

    Thanks,
    Geoff

    in reply to: Is it possible to upgrade to multi #1024754
    Geoff
    Member

    Heck yeah! Sounds good to me and thanks again for reaching out–I hope you enjoy the calendar. 🙂

    Feel free to hit us up with a new thread if any other questions pop up and we’d be happy to help as best we can.

    Cheers!
    Geoff

    in reply to: Open-ended events #1024752
    Geoff
    Member

    Thanks for following up! Sorry again for the bad news, but do please add your vote to the feature request and keep us posted with any workarounds you find that others might appreciate knowing.

    Geoff

    in reply to: previous month's recurring events appear in calendar view #1024751
    Geoff
    Member

    Right one! Thanks for following up and letting me know–so glad that helps!

    Cheers,
    Geoff

    Geoff
    Member

    Thanks for following up, Terry!

    I am hoping the theme developer will be able to find a proper solution, but you could manually apply the underline using CSS with something like:

    .tribe-events-style-full header nav>ul>li.menu-item-208 a:before {
    transition: width 0.3s linear;
    background: rgba(255,255,255,0.5);
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 150%;
    width: 0;
    }

    That may not be correct, but it’s based off of the theme’s styles for the underline and trying to target it to only pages where the body class is specific to the calendar, on that specific menu item. If nothing else, perhaps the theme author can tailor that a little further.

    Thanks!
    Geoff

Viewing 15 posts - 5,686 through 5,700 (of 10,150 total)