Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Dave,
If you’re using the “Default Page Template”, then for single events they will use your theme’s single.php template. For the calendar, it will use your theme’s page.php template. In order to remove the sidebar on the calendar page and make it full width you’ll need to edit your theme’s page.php and add some conditional code to detect that you are on the calendar page and not call the sidebar however that is called in page.php in your theme. These should help you: https://gist.github.com/jonahcoyote/2992392 – then, you’ll also need to modify the CSS a bit to target the calendar page to make it full width. The calendar page is identified with the .events-gridview body class so you can use that to specifically style elements on the calendar page.
I hope that helps!
– Jonah
Jonah
ParticipantHi Charles,
Sorry to hear about the issues.
1. Where are you trying to import from and with what plugin? I’ll need some examples of which events are not importing correctly and how exactly you are importing. Also, in most cases where there’s an issue you almost always should try deactivating all other plugins because there may be another plugin that is interfering with the way ours works.
2. I see a javascript error on the page that could be causing this issue: http://cl.ly/image/082z0K0g450n – you’ll need to get that sorted out somehow and that should resolve the issue with the calendar not advancing.
3. This is a simple CSS fix, you just need to apply some spacing by adding something like the following to your theme’s style.css file:
.navlink {
margin: 30px 0 0;
}
I hope that helps!– Jonah
Jonah
ParticipantHi Noel,
The only thing I can think of would be to use something like http://wordpress.org/extend/plugins/feedwordpress/ – this will definitely handle feeding events to/from any site. The trick will be getting the event meta like start/end date over. You’ll just need to play around with the plugin and try to get it working. I would suggest trying out a demo first before converting the other site.
I hope that helps,
JonahFebruary 19, 2013 at 8:51 am in reply to: [Calendar View] Problem – last day event (30/31) repeating next month #32970Jonah
ParticipantHi Chase,
Try changing your timezone in Settings > General to the UTC time for your city rather than the city itself.
I hope that helps,
– JonahFebruary 19, 2013 at 8:43 am in reply to: How to increase month and year dropdown menus in calendar view. #32967Jonah
ParticipantHi Steve,
Sure you can, just use the proper CSS in order to do so:
#tribe-events-events-month, #tribe-events-events-year {
font-size: 16px;
height: 100px;
width: 200px;
}
Jonah
ParticipantHi Steve,
You would need to put the code in custom-venue-query.php or include that file wherever you want the list to appear. For example, if you wanted it to appear in the sidebar, you would need to add it to sidebar.php. You’ll need to know a little PHP though or at least be a little comfortable changing things. Every theme is different too so adding the code to your theme’s sidebar.php may have different affects. There are many different methods of adding code and content in WordPress and unfortunately we cannot assist in guiding you in all of them. A little trial and error may be necessary to try adding the code in different places and see what happens. Good luck!
– Jonah
February 19, 2013 at 8:38 am in reply to: An event has disappeared from Event list/calender?! #32965Jonah
ParticipantHi Daniel,
Ok, I think I’ve figured it out. This appears to be normal functionality in WordPress for any post/page you are creating. Once you schedule a post, the options for publishing go away. That’s because it’s scheduled. The only way to publish the post is to change the Scheduled Date back to today or prior. You can test this out with any other post and the same thing happens. So it’s not anything our plugin is doing, it’s just the way WordPress works. I could have sworn that in previous versions you could still select Published from the status drop down after a post had been scheduled but actually that doesn’t make sense if you think about how that would work. Why would you want to have published posts appear post-dated? In the case of events it definitely makes sense, but all you have to do is leave the published date alone (to today or prior) and then change the start/end date of the event and it will display accordingly.
I hope that explains things and sorry for the run around on this.
– Jonah
February 18, 2013 at 3:48 pm in reply to: 2.0.11 Makes Dropdown Nav on Calendar Nearly Invisble #32934Jonah
ParticipantHi Kirsten,
I can see the dropdown nav on the calendar just fine. It’s a little small font size wise but not bad. You can easily increase the font size by targetting it with CSS like so:
.tribe-events-month-nav {
font-size: 16px;
}
You can add that to your theme’s style.css file.On the list, it looks like your theme is applying CSS that is setting the height of clearfix class items to 0. I would suggest finding the .clearfix declaration in your theme’s style.css file and changing it to this instead:
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
I hope that helps!– Jonah
Jonah
ParticipantHi Jo,
There could be an issue with the database but it’s odd that the events display in the calendar but not in the list. Could you send me an export of your events by going to Tools > Export? Then I can import all your events and test it out on my end.
Thanks,
JonahJonah
ParticipantHi Jo,
Thanks for sending the theme across. I installed it and am not seeing any issues like you reported. I see all my events in the list and on the calendar. That leads me to believe that there must be something else going on. My first guess is that it’s a plugin conflict. Have you tried deactivating all other plugins? Please try this and let me know how that goes.
– Jonah
February 18, 2013 at 11:09 am in reply to: An event has disappeared from Event list/calender?! #32905Jonah
ParticipantHi Daniel,
Thanks for sending login information across. I’m not seeing the issue anymore though. I’m seeing the event as published in the admin http://cl.ly/image/3O2L170W2G1b and the it’s showing up in the calendar http://cl.ly/image/391Q320z0g0w
Did you figure out what was wrong here?
– Jonah
Jonah
ParticipantHi Thomas,
I’m not quite sure what you are talking about actually. Can you provide some screenshots or a screencast to help describe what the issue is?
Thanks,
JonahJonah
ParticipantHi Eugen,
Please create another thread for that issue.
Thanks,
JonahJonah
ParticipantHi Eugen,
Our plugin does not currently support exporting events to Facebook. You’ll need to find some other solution for this.
– Jonah
February 18, 2013 at 7:47 am in reply to: Import FB events slows down entire site making it not usable #32890Jonah
ParticipantHi Jacek,
Sorry to hear about the troubles. Are you importing a lot of events from Facebook? If there’s a lot, this could result in a slow down. Is it still slow after the import has finished? How many events total do you have on your WordPress website? It could be a conflict with another plugin, please try deactivating all other plugins to see if this helps.
You might also want to look at your server/hosting setup. What web host are you with? Have you tried increasing the PHP memory allocated to WordPress? You can do that by using one of the methods listed here: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Finally, another thing to look at is your theme. You should try reverting to the Twenty Eleven/Twelve theme to see if that helps.
Let me know if any of the above helps.
– Jonah
-
AuthorPosts
