Jennifer

Forum Replies Created

Viewing 15 posts - 4,156 through 4,170 (of 4,212 total)
  • Author
    Posts
  • in reply to: Polylang Support #1286609
    Jennifer
    Keymaster

    Hi Mansi,

    No we are not using fullcalendar.js. Our default calendar does show events that span multiple days as individual events on each day that it spans. So for example if you create the event “Spring Festival” and set the start date at April 10th and the end date at April 17th, each of the eight days will have the event “Spring Festival” listed (separately) and then when you hover over the event on any day, you will see “Spring Festival” with April 10th – April 17th underneath.

    We do have a demo here of the calendar and some of our other plugins, but I don’t see any multi-day events on there.

    I hope that clears things up, but if you need further clarification, just let me know!

    in reply to: Unable to install Community Events plugin #1286602
    Jennifer
    Keymaster

    Hi Cary,

    Thanks for sending your system info! Sorry to hear you’re still having problems with this. I think the issue is coming from using the Release Candidate version of Community Events. I tested it out on my end with the versions you are using and got the same thing.

    Try following these instructions to manually install the current version (4.4.6) or you can also try using the RC version of the Events Calendar as well.

    Let me know if that works for you!

    Thanks,

    Jennifer

    in reply to: table & calendar colors : part 2 #1286584
    Jennifer
    Keymaster

    Melissa,

    The screenshot didn’t come through, but I would also recommend taking a look around in your Divi settings (it looks like you are using the Divi theme?) to see if you see the green, but if you can’t find it anywhere, you can add this to in Appearance > Customize > Additional CSS:

    /* Filter bar background */
    .tribe-bar-filters {
    background-color: #e0e0e0
    }

    /* Date, Search, and Near input boxes */
    #tribe-bar-form input[type="text"] {
    border-bottom-color: #666;
    }

    /* Submit button */
    #tribe-bar-form .tribe-bar-submit input[type=submit] {
    background-color: #666;
    }

    /* "View as" box background */
    #tribe-bar-views, #tribe-bar-views .tribe-bar-views-inner {
    background-color: #e0e0e0;
    }

    /* "View as" option links */
    #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a {
    background-color: none;
    }

    I labeled what everything was so that you can set different colors if you’d like. You can take a look at color.adobe.com if you need to look up any hex values (like #e0e0e0), and then just replace the ones I put in for you.

    Keep in mind that the settings are the preferable way to set colors, but if you can’t find the green in there, this should take care of it for you! Let me know if you have any questions.

    Thanks,

    Jennifer

    in reply to: Filter recurring events shown on Display All page #1286545
    Jennifer
    Keymaster

    Hi Adam!

    Sorry for the delayed reply – our forums have been a bit busier than usual!

    Try adding this to your functions.php file:

    function tribe_recurring_events_view_all_filter( WP_Query $query ) {
    if ( $query->is_main_query() && 'all' === $query->get( 'eventDisplay' ) ) {
    $query->set( 'start_date', date_i18n( Tribe__Date_Utils::DBDATETIMEFORMAT ) );
    $query->set( 'tribe_remove_date_filters', false );
    }

    return $query;

    }

    add_action( 'tribe_events_pre_get_posts', 'tribe_recurring_events_view_all_filter', 100 );

    That should give you only the upcoming events on the “see all” page.

    Let me know how it works for you!

    Thanks,

    Jennifer

    in reply to: Hide all Events from Woocommerce Shop Page #1286326
    Jennifer
    Keymaster

    This reply is private.

    in reply to: table & calendar colors : part 2 #1286055
    Jennifer
    Keymaster

    Hi Melissa,

    I’d be happy to help you with this!

    When you go into the Customizer > The Events Calendar > Global Elements, check to see if “Filter Bar Color” is set to the mint green. If not, take a look around some of the other options in there – you are most likely to find it in one of those settings.

    Let me know how that goes!

    in reply to: Community Events Submission width #1286044
    Jennifer
    Keymaster

    Hi Annie,

    Thanks for reaching out!

    We are aware of a few styling issues occurring with certain themes and are working on getting those fixed. Sorry for the inconvenience there!

    In the meantime, try changing between the three styling options under Events > Settings > Display.

    You can also add a little CSS:


    /* Increases the width */

    #post-20350 .entry-content {
    width: 95%;
    }

    /* This will add some extra space in around some of the form elements - just noticed the Venue & Organizer Details sections were looking a little scrunched, so I thought I'd add it in here! */

    .tribe-community-events td {
    padding: 15px;
    }

    I hope that helps, and please let me know if you have any more questions!

    in reply to: Community Tickets Payment Options #1286037
    Jennifer
    Keymaster

    Hi Andy,

    Thanks for checking out our plugins.

    PayPal is not the only option. Checkout for Community Tickets is handled by WooCommerce, so you can setup Stripe (credit card payments) and other options in addition to PayPal! Woo also offers some premium gateways to give you even more flexibility in how you accept payments.

    Let me know if you have any more questions!

     

    in reply to: Send notice RSVP to event organizer #1286013
    Jennifer
    Keymaster

    Hi Marcello,

    Thanks for reaching out!

    We don’t have a built-in way to email the organizer with paid events, but you can try this out for RSVPs. Unfortunately, adding email notifications for event organizers would require a level of customization that we are not currently able to provide. However, if you’d like to give it a shot, we do have a themer’s guide with some great info to get you started!

    Please let me know if you have any more questions.

    Thanks,

    Jennifer

     

    in reply to: Custom Sidebar on Events Archive #1286003
    Jennifer
    Keymaster

    Hello,

    Thanks for reaching out!

    Fortunately, custom sidebars are pretty straightforward to set up, and you can add them to templates so they will only display on certain pages.

    We have a guide to help you with customizing templates. Once you’ve got the template set up, you can create a custom sidebar by following these instructions, and then add it to the template by using get_sidebar. Once this has been done, you should see your custom sidebar appear in the widget area, where you can drag and drop widgets into it like any other sidebar.

    I’m not familiar with the Avada theme, but you should be able to use their widgets on custom sidebars.

    Please let me know if you have any questions or need any additional guidance to implement your custom sidebar!

    Thanks,

    Jennifer

    in reply to: How can I suppress the feed? #1285913
    Jennifer
    Keymaster

    Hi Terri,

    Sorry that didn’t work for you : / Give this one a try:

    https://gist.github.com/jentheo/74a2b3590131167ec7b529410cce1977#file-gistfile1-txt

    I tested it out on my end, and it did remove the link.

    Let me know how it goes!

    Thanks,

    Jennifer

    Jennifer
    Keymaster

    This reply is private.

    Jennifer
    Keymaster

    This reply is private.

    in reply to: Add your event #1285572
    Jennifer
    Keymaster

    Hi Ryan,

    Thanks for checking out our plugins!

    We do indeed have an add-on for front event submission – Community Events. It creates a front end form and provides settings that would let you approve events before they appear on your site, choose whether or not users need to be logged in to submit events, choose to receive an email alert when an event is submitted, etc.

     

    You can use this add-on with both the free The Events Calendar plugin and the Pro version. If your users need to be able to create and sell tickets on the events they submit, we also have an add-on called Community Tickets (this requires Event Tickets Plus to be running as well) that would allow them to do so.

    Please let me know if you have any more questions!

    in reply to: Polylang Support #1285495
    Jennifer
    Keymaster

    Mansi,

    Thanks, it’s good to hear that you like what you’ve seen so far!

    Events Calendar Pro supports recurring events, so you can create an event and then set it to repeat daily, weekly, monthly, yearly, or a on a custom schedule like every 3 days.

    In The Events Calendar and in Pro, you can create events that span several consecutive days, in which case each day would show the event (separately) on the default calendar view.

    For a more technical look at our plugin, you can check out our themer’s guide, as well as our functions archive, and install the free version of The Events Calendar to take a look around.

    Does that answer your question? Just let me know if you need any further information!

Viewing 15 posts - 4,156 through 4,170 (of 4,212 total)