Jonah

Forum Replies Created

Viewing 15 posts - 3,856 through 3,870 (of 4,001 total)
  • Author
    Posts
  • in reply to: Programmatically translate organiser and venue. #12817
    Jonah
    Participant

    Hi Aaron, the Venue and Organizer data is stored in the wp_postmeta table. Does that help?

    in reply to: Single venue template not displaying upcoming events #12816
    Jonah
    Participant

    Hi Paul,

    It’s hard to say what’s going on here without taking a closer look. I’m seeing upcoming events on my local site so I don’t see what the problem could be. Can you provide me WP admin and FTP access so I can take a look? Do I have permission to disable plugins, switch themes, turn on debugging, etc.?

    Thanks,
    Jonah

    in reply to: Events page CSS #12815
    Jonah
    Participant

    Hi Adam,

    You’ve got the background on the events page being set via this CSS:

    body.custom .page {
    background: #CE542B url(‘/container-texture.png’);
    }

    So you either need to remove that and apply that background to any other pages some other way. Or, figure out a way to apply the background to only the events pages. Unfortunately we don’t apply any body classes yet but you can try this workaround to filter the body class in thesis and add classes for when you are on events calendar pages. Try adding this to your functions.php file:


    add_filter('thesis_body_classes', 'add_browser_classes');
    function add_browser_classes($classes){
    if(tribe_is_month() || tribe_is_event() || tribe_is_upcoming()) {
    $classes[] = 'events';
    }
    return $classes;
    }

    Then you should have ‘events’ as a new body class that you can latch onto in your CSS and style the background accordingly.

    Let me know whether or not that helps.

    in reply to: New Installation – Events Calendar PRO. #12806
    Jonah
    Participant

    Hi Xpert, I don’t understand what you mean by “Clickable Calendar and Custom Event Attributes” or what you’re trying to accomplish. Can you be more specific please?

    Jonah
    Participant

    Hi Tony,

    It looks like the background is there behind the calendar and evens list now. Did you resolve this?

    in reply to: How do you make a custom rss feed for upcoming events? #12749
    Jonah
    Participant

    Hi Greg,

    I’m sure this is possible but you’ll have to read up on customizing feeds in WordPress to figure out how to do it or hire a developer to help you with this. You might want to start here: http://codex.wordpress.org/Customizing_Feeds

    in reply to: PHP error #12748
    Jonah
    Participant

    Hi Andy, thanks for the report. I was not able to produce the error myself but that doesn’t mean it’s not a problem. I’ve logged it for the developers to take a look and we’ll definitely get it fixed if it’s an issue.

    in reply to: Cant add State/Province In Venues #12747
    Jonah
    Participant

    Hi Samuel, this does appear to be an issue and not only with Canada… I’ll get it logged as a bug and we’ll get it fixed in a future release! Thanks for the report!

    in reply to: Multiday Event Cutoff #12746
    Jonah
    Participant

    Hi Paul, can you be more specific about the issue? What event in particular are you seeing it on? Can you please email WP admin and FTP access to jonahcoyote [at] gmail [dot] com so I can take a look at things?

    in reply to: limit contents of event in 'list view' #12745
    Jonah
    Participant

    Hi Robert,

    To hide the address, you can override the list.php template by making a copy of /plugins/the-events-calendar/views/list.php and placing it in an ‘events’ folder within your theme and then just removing the HTML and PHP responsible for displaying the address…

    As for the full width page have you tried switching your Events Template in The Events Calendar settings? You might try changing it to Default Page Template and/or you may have to create a page specifically that use for Events and then making that page full width in the Genesis settings.

    Let me know if any of that helps.

    in reply to: Event Categories showing 404 page not found error. #12731
    Jonah
    Participant

    Hi Melissa,

    I took a look at things and there’s something in your theme that is preventing The Events Calendar from working properly. I switched to the Twenty Ten theme and things seemed to be working correctly. We’ve done our best to make sure our plugin works with the most themes possible but because there are so many themes out there we cannot possibly make our plugin compatible for all of them.

    What I would suggest is updating to WP 3.3 to see if that makes any difference and/or waiting until the next version of our plugin comes out which should be soon.

    If that doesn’t work you will have to hire a developer to help you with this issue. Good luck.

    in reply to: Customize widget content #12730
    Jonah
    Participant

    Hey Tony, take a look at the tutorial we wrote up on that topic: https://theeventscalendar.com/how-to-completely-customize-widgets/

    in reply to: Custom goodies for views/events-list-load-widget-display.php #12727
    Jonah
    Participant

    Sure Christopher, you’re welcome! The Advanced Custom Fields website has a bunch of great documentation too if you get stuck… But I’d be happy to provide some more pointers as well. Let me know.

    in reply to: Event Categories showing 404 page not found error. #12720
    Jonah
    Participant

    You can email me WP admin and FTP creds to jonahcoyote [at] gmail [dot] com

    in reply to: Event Categories showing 404 page not found error. #12719
    Jonah
    Participant

    Hi Melissa,

    Looks like there’s a number of things going on. Would you mind giving me WP admin and FTP access so I can take a look?

    I do not know how the nhccrr.org put together their search. I would suggest contacting them and asking. We do not provide support for complex custom programming. However, I can tell you that we are looking into an events search/filtering mechanism but I have no idea when…

Viewing 15 posts - 3,856 through 3,870 (of 4,001 total)