Forum Replies Created
-
AuthorPosts
-
January 18, 2012 at 8:38 pm in reply to: Event List Styling / Calendar Navigation Odd when no Events #13605
Jonah
ParticipantHmmm, looks like a bug that we’ve seen before. It could be theme related or just something with our plugin. For some reason, extra and tags are being thrown into the code messing the display up. I’ll have one of the other devs take a look at this and we’ll get back to you.
Jonah
ParticipantHi Frank/Rob, I’m pretty sure this is going to be a core hack meaning that any modification we do offer up is going to be overwritten the next time you update and I’m not quite sure how to do this. Rob, can you have someone else take a look please?
Jonah
ParticipantHi Giornale, there’s got to be something in your theme or a plugin that is automatically putting the image there. Do image attachments automatically show up in your single blog posts? If so, then the same thing is happening for events. If you provide me FTP and WP admin access, I’ll take a look and see what I can figure out. It shouldn’t be too difficult. Email credentials to jonahcoyote [at] gmail [dot] com
Thanks,
JonahJonah
ParticipantHi Tyler, there’s currently no built in way to do this. You’d have to hack it and it would be fairly involved. You may want to request this as an upcoming feature and we can put it in the queue.
Jonah
ParticipantGlad you got it working, let us know if you need anything else with this.
Jonah
ParticipantHi Xpert, you’re going to want to pass in an end date as well. In your example above you could set the end date like so:
$EndDate = date('j M Y', strtotime('30 days'));
So I think you would want to use ‘start_date’=>$CurrentDate and ‘end_date’=>$EndDate
Also, I don’t think you need the eventDisplay arg in there. This works for me.
– Jonah
Jonah
ParticipantHey Simon, can you email WP admin credentials so I can look at some things? jonahcoyote [at] gmail [dot] com
Jonah
ParticipantOh ok, I see it now. It looks like it could be a memory issue on your server. Try upping your memory with your web host or doing it manually by editing your .htaccess file and adding:
php_value memory_limit 128M
Below any of the other code there. Otherwise contact your web host and have them do it.
Jonah
ParticipantHey Jason, we’re all a little confused as to what the problem is right now. Looking at your link above we see that you’re spitting a bunch of code out for debug and then there are events listed below that. What exactly is the problem now?
January 17, 2012 at 9:26 am in reply to: Updating Button keeps spinning… not new publishing either #13501Jonah
ParticipantHey Benjamin, yes try disabling all other plugins and/or reverting to the Twenty Eleven theme to see if this helps.
Jonah
ParticipantAhh there we go, must have been a glitch. Both the Google Calendar and iCal links are working for me. Do you have some screenshots you can send me to show what you’re seeing?
Jonah
ParticipantHi Beth, it’s complicated. We currently do not use a page in the traditional sense so this is why you’ll need to hack it a bit to get it to work right with your theme. I’m not sure how your theme’s sidebar setup is done but there is definitely a way to get an events specific sidebar working – it just depends on your setup. You could try creating a custom page template (mirroring your default page.php template) and then calling a specific sidebar in it and assigning that page template as the Events Template in The Events Calendar settings. There’s a few other ways to do it but it’s hard to say how it could work for you or how you want it to work. We do have plans to change the current templating system in the future so there is an actual page created and this will remove headaches like this 🙂
Jonah
ParticipantHi Audrey, your website is not loading, something going on?
Jonah
ParticipantHi Suzanne, you’ll need to specifically target the events list page and adjust some of your CSS code to get things looking good. You can use some conditional code to target the events list page and apply a special class if that would help. This will help you with that:
if(tribe_is_month()) { //Calendar Grid} else if(tribe_is_event() && !tribe_is_day() && !is_single()) { //Event List
} else { //Single Event
}
Jonah
ParticipantHey Simon, do you have an example I can look at? Have you tried disabling all other plugins and/or switching to the Twenty Eleven theme?
-
AuthorPosts
