Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Aaron, the Venue and Organizer data is stored in the wp_postmeta table. Does that help?
Jonah
ParticipantHi 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,
JonahJonah
ParticipantHi 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.
Jonah
ParticipantHi 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?
January 2, 2012 at 1:30 pm in reply to: Background around grid view different from my usual page background #12751Jonah
ParticipantHi Tony,
It looks like the background is there behind the calendar and evens list now. Did you resolve this?
January 2, 2012 at 1:26 pm in reply to: How do you make a custom rss feed for upcoming events? #12749Jonah
ParticipantHi 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
Jonah
ParticipantHi 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.
Jonah
ParticipantHi 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!
Jonah
ParticipantHi 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?
Jonah
ParticipantHi 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.
Jonah
ParticipantHi 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.
Jonah
ParticipantHey Tony, take a look at the tutorial we wrote up on that topic: https://theeventscalendar.com/how-to-completely-customize-widgets/
December 29, 2011 at 8:51 am in reply to: Custom goodies for views/events-list-load-widget-display.php #12727Jonah
ParticipantSure 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.
December 28, 2011 at 10:10 pm in reply to: Event Categories showing 404 page not found error. #12720Jonah
ParticipantYou can email me WP admin and FTP creds to jonahcoyote [at] gmail [dot] com
December 28, 2011 at 10:09 pm in reply to: Event Categories showing 404 page not found error. #12719Jonah
ParticipantHi 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…
-
AuthorPosts
