Jonah

Forum Replies Created

Viewing 15 posts - 3,826 through 3,840 (of 4,001 total)
  • Author
    Posts
  • in reply to: events.css #13118
    Jonah
    Participant

    Hi Jason, glad you figured it out. If there’s anything else we can help you with let us know.

    in reply to: Customize display of events list widget #13105
    Jonah
    Participant

    Hey Dan, can you post some code samples and maybe a link where I can see what you’ve got (or even a screenshot) in place now?

    Thanks,
    Jonah

    in reply to: Calling a list of Events outside of WordPress directory #13104
    Jonah
    Participant

    Hi David, if you take a look at the tribe_get_events function in our documentation I’ve put an example there giving you an idea how you can use this function to query your events wherever you want: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events

    Let me know whether or not that helped.

    – Jonah

    Jonah
    Participant

    Do you have a link we can take a look at Melissa?

    in reply to: Address/venue details cuts out in Event List view #13102
    Jonah
    Participant

    Hi Mike,

    As easy fix would be to modify the CSS for your .hentry class like so:


    .hentry {
    width: 680px;
    overflow: visible;
    }

    It might not be the best solution because it will likely affect styling on other pages but you’re somehow going to need to play with the CSS to adjust the widths of your main content area so it’s not getting cut off.

    I hope that helps,
    Jonah

    in reply to: Recurring Events Query #13101
    Jonah
    Participant

    Hi Jonny, unfortunately there is no way I can think of to do this currently but I’ve added it as a feature request.

    in reply to: Display search results for only upcoming events #13100
    Jonah
    Participant

    Hi Kyle,

    You’ll need to hook into the pre_get_posts action like so: http://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts

    You’ll want to conditionally apply the query changes only for is_search() and pass in additional parameters to specify for example only upcoming events (‘eventDisplay’=>’upcoming’).

    If you also want to apply query filtering by date you can use ‘start_date’=>’1/9/2012’ & ‘end_date’=>’1/9/2012’ for example (you’ll want to change the dates and dynamically populate with todays date).

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

    Hi Robert, sorry for the confusion. I was incorrect in thinking you could use a shortcode (there is no shortcode). The solution to the full width problem in Genesis is somewhat complex because Genesis is kind of a complex theme.

    1. Set your Events Template to “Default Page Template” if it’s not already.
    2. Set the layout dynamically for the grid view (add to functions.php file in Genesis child theme): http://pastebin.com/SGSP5RzU
    3. Optionally setup body classes to be able to target specific HTML elements (again paste in functions.php in Genesis child theme): http://pastebin.com/cJkkBpCL
    4. Hide sidebar (if it’s still displaying underneath the calendar:


    .events.grid #sidebar {
    display: none;
    }

    That should about do it. The second step should definitely give you a full page layout and steps 3 & 4 are to cover some extra bases in case you need to still hide the sidebar below the full width calendar.

    I hope that helps 🙂

    in reply to: Filter by event category in tribe_get_events? #13098
    Jonah
    Participant

    In ‘terms’, make sure to use the slug of your “category”.

    in reply to: Filter by event category in tribe_get_events? #13097
    Jonah
    Participant

    Hi Caleb, The Events Calendar uses taxonomies for categories so you can’t filter by category in the same way. To filter by taxonomy you would use something like this:


    tribe_get_events(
    array(
    'eventDisplay'=>'upcoming',
    'posts_per_page'=>3,
    'tax_query'=> array(
    array(
    'taxonomy' => 'tribe_events_cat',
    'field' => 'slug',
    'terms' => 'my_cat_name'
    )
    )
    );

    Jonah
    Participant

    Rob, I was experiencing it in 2.0.1 and 2.0.2 – ticket is #14231

    in reply to: events.css #13074
    Jonah
    Participant

    Hey Jason, this is very strange… What version of The Events Calendar and WordPress are you running? I would first suggest reinstalling both. Second, is there any code in your theme or a plugin that could be removing the events.css? Try disabling all plugins except for The Events Calendar and checking again and try switching to the default Twenty Eleven theme to see if that fixes it… Let me know what you find.

    in reply to: Filter by event category in tribe_get_events? #13009
    Jonah
    Participant

    Hey Caleb,

    Can you provide an example of what you are experiencing and some code samples to give me an idea of what the problem could be?

    in reply to: events.css #12990
    Jonah
    Participant

    Hi Jason,

    It should be being loaded in single-venue.php and any events template file. Can you provide a link to your site so I can view the source?

    Thanks,
    Jonah

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

    Hi Paul, sorry for the delay on this but I’ve finally had a chance to take a look at things. I’ll go through the items in the email you tried to send to me:

    On #1, try switching the Events Template in Settings > The Events Calendar to “Default Page Template” which will force the plugin to use your themes native page template instead of the more generic Events Calendar page template. That should resolve the Venue info display.

    On #2 and #3 I’m suspecting there is either a conflict with another plugin or with your theme. What I’d like to do to at least rule this out, is disable all plugins and/or revert the default TwentyEleven theme to see if this resolves the issues. Do you want to try this on your local dev or can I do it on the remote site?

    Thanks,
    Jonah

Viewing 15 posts - 3,826 through 3,840 (of 4,001 total)