Jonah

Forum Replies Created

Viewing 15 posts - 1,171 through 1,185 (of 4,001 total)
  • Author
    Posts
  • in reply to: Sidebar formatting #41444
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Remove image altogether Part 2 #41442
    Jonah
    Participant

    Hi Carolyn,

    So you’re saying featured images are not showing up for pages?

    – Jonah

    in reply to: Sidebar formatting #41419
    Jonah
    Participant

    Sure, 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

    in reply to: Remove image altogether Part 2 #41352
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Events on Responsive site not looking right #41350
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Events on Responsive site not looking right #41347
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Calender View OverLapping #41344
    Jonah
    Participant

    Awesome, 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,
    Jonah

    in reply to: Calender View OverLapping #41315
    Jonah
    Participant

    Great! 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

    in reply to: Creating custom description for .ics file #41314
    Jonah
    Participant
    in reply to: Creating custom description for .ics file #41292
    Jonah
    Participant

    Hi 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

    in reply to: How can I pull featured pics from events? #41277
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Import to Google calendar #41276
    Jonah
    Participant

    Hi 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

    in reply to: Creating custom description for .ics file #41275
    Jonah
    Participant

    Hi 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

    in reply to: Calender View OverLapping #41273
    Jonah
    Participant

    Hey 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

    in reply to: 404 error on upcoming events page #41178
    Jonah
    Participant

    Hi 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

Viewing 15 posts - 1,171 through 1,185 (of 4,001 total)