Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Yvonne, most of what you’re asking for are not actual problems with our plugin but more issues with your CSS, either from your theme or elsewhere. The bunched up text is due to a small line-height being added to links in your sidebar widgets. You’re going to need to work on these kinds of things yourself. We can’t help you style your website. Also, it’d be great if you limited the thread to one issue/question at a time instead of lumping things together. It’s not fair to other users and it mucks up the forum.
What do you mean about the city being separated? How do you want it to be displayed?
Regards,
JonahJonah
ParticipantHi Carolyn,
So you’re saying featured images are not showing up for pages?
– Jonah
Jonah
ParticipantSure, you just need to modify your CSS. Your theme is adding padding to divs in the sidebar with this:
.widget div {
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
}
You can remove that with the following:
.eventsAdvancedListWidget.widget div {
padding-bottom: 0;
padding-top: 0;
}
I hope that helps!– Jonah
Jonah
ParticipantHi Carolyn,
Sorry about that, let’s try this again. For your page.php template try this: http://snippi.com/s/rlwrbgu and for single.php this: http://snippi.com/s/6r24e40
Let me know if that works better.
Regards,
JonahJonah
ParticipantHi brand76,
Ok, now to answer your question. We’ve taken some strides to make the plugin responsive ready but there are many responsive techniques and themes that will all do things differently, and so we cannot guarantee it’s going to be perfect in every setup. It’s up to you to make the proper adjustments within your own theme at all the responsive breakpoints to get it looking the way you want. To learn more about how to do that I would suggest reading some articles on responsive web design/development. You’ll find that most of the changes you’ll need to make are relatively easy.
I hope that helps,
JonahJonah
ParticipantHi brand76,
I’m going to move this thread to the main Pro forum since it doesn’t pertain to anything Facebook. Keep an eye out for a response there.
Thanks,
JonahJonah
ParticipantAwesome, I’m glad to hear that helped! I’m going to close this thread out but feel free to open up threads for anything else you need help with.
Cheers,
JonahJonah
ParticipantGreat! To clean up the header a bit, try adding this CSS:
.tribe-events-month-nav {
width: 380px;
}.tribe-events-month-nav .tribe-events-prev-month,
.tribe-events-month-nav .tribe-events-next-month {
float: left;
}.tribe-events-month-nav .tribe-events-events-dropdown {
float: left;
width: 110px;
}
I hope that helps!– Jonah
Jonah
ParticipantHey Dave,
Take a look at this, it might help: https://theeventscalendar.com/support/forums/topic/control-data-in-ical-feed/#post-29629 and https://gist.github.com/afragen/2649910
Does that help?
– Jonah
Jonah
ParticipantHi Dave,
You would add that to your theme’s functions.php file. It would change the ics by filtering the item and allowing you to do whatever you want with the description.
– Jonah
Jonah
ParticipantHi aj,
Can you paste the full code that the widget uses so I can take a look? You’re going to need to modify it’s query completely to include the events post type which is totally separate from other posts/categories.
Please post the code to http://snippi.com/
Thanks,
JonahJonah
ParticipantHi neus,
Unfortunately not without modifying or building something yourself. We currently only offer google calendar import for individual events. Maybe try searching the forum here to see if someone else has come up with a solution or try finding a third party solution to be able to send WordPress posts to Google Calendar.
Good luck!
– Jonah
Jonah
ParticipantHi Dave,
You should be able to filter the description using this filter:
add_filter( 'tribe_ical_feed_item', 'filter_ical_item', 10, 2 );
function filter_ical_item( $item, $eventPost ) {
$item[] = 'DESCRIPTION:' . str_replace( ',','\,', $description );
return $item;
}
Does that help?– Jonah
Jonah
ParticipantHey goodlooknout,
That looks pretty good except for all the categories. You can fix that pretty easily by adding this to you theme’s style.css file:
.events-single #sidebar, .events-venue #sidebar {
display: none;
}
That will hide the sidebar on single events and venues.Does that work?
– Jonah
Jonah
ParticipantHi Crosby,
Thanks for the additional troubleshooting. I’m going to need to have one of our developer take a look at this as it’s beyond me. You can expect a response in a day or two. Stay tuned.
Thanks,
Jonah -
AuthorPosts
