Geoff

Forum Replies Created

Viewing 15 posts - 4,336 through 4,350 (of 10,150 total)
  • Author
    Posts
  • Geoff
    Member

    My pleasure! Thanks for following up to let me know. 🙂

    Cheers,
    Geoff

    in reply to: Quick question about features #1079966
    Geoff
    Member

    Hi Adam,

    Yes, this is absolutely possible!

    You’ll need the following plugins to get things going:

    With these installed, site visitors will be able to submit events to the calendar and create tickets for those events, the payments of which can be split with you. You can set the tickets to sell from any of the following e-commerce plugins:

    • WooCommerce
    • Easy Digital Downloads
    • Shopp
    • WPEC

    I do want to point out that we offer a full refund on all products within 30-days of purchase. That should give you plenty of time to give that combination a try to see if it works for you and your site.

    Does this help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hey Robert!

    Yeah, a lot of that will have to do with the markup in the template, but I think it can be done with some CSS. Something like this in your theme’s style.css file or using a plugin like Simple Custom CSS:

    .single-tribe_events .tribe-events-event-meta-custom dd {
    display: inline-flex;
    }

    Will this work for you? Please let me know. 🙂

    Cheers,
    Geoff

    in reply to: Calendar for individual users maintained by Admin #1079796
    Geoff
    Member

    Hey @driven13,

    This is a great question! I’m surprised I haven’t seen it come up more often.

    I’m afraid The Events Calendar (or any of our add-ons) do not do private or personal calendars, at least in the way you might be looking for. The closest I think it gets is creating an event category based on each user, then using the unique URL for each category to link users directly to their calendar.

    It would certainly be possible to then add a function that looks at the current category, then determines if (a) the user is logged in and (b) that user is the person who should be allowed to view that category URL. We have some examples of conditional wrappers that might help you get started, but it will certainly take a bit of custom development to make it all work out.

    Does this help answer your question? Please let me know if you have any other questions and I’d be happy to help as best I can.

    Cheers!
    Geoff

    Geoff
    Member

    Hey Ashia! Thanks for the kind words. 🙂

    You can change the date format in Events > Settings > Display in the Date Format Settings. In particular, the Week Day Format setting is what you’re looking for and you can use any of the date formatting options offered by WordPress to customize it.

    Cheers!
    Geoff

    in reply to: Help I can't see events tickets plus info #1079779
    Geoff
    Member

    Hey Sarah, just following up based on information you shared in another thread:

    I can list events on my site and can create tickets in the backend but on the website page it does not have any purchase functionality. It only lists the events details.

    Can you take a screenshot of the tickets you created in the event editor? I would like to see the settings for those tickets to make sure they’re set up correctly. Here’s an example of what I’m looking for.

    Thanks!
    Geoff

    in reply to: Ticket purchase option not showing on for events #1079775
    Geoff
    Member

    Hi Sarah, nice to see you again. 🙂

    I’m helping you in the other thread you opened around the same question, so I’ll go ahead and close this thread and see you over there.

    Cheers!
    Geoff

    in reply to: How can I change some CSS #1079769
    Geoff
    Member

    Howdy Philippe,

    Good question. You can change any CSS by adding it to your theme’s style.css file or using a plugin like Simple Custom CSS.

    In this case, targeting a past event would look something like this:

    .tribe-events-calendar td.tribe-events-past {
    background: #333 !important; /* or whatever color you'd like */
    }'
    
    ...and for the title background color:
    
    

    .single-tribe_events .sidebar .tribe-events-single-section-title {
    background-color: #333 !important; /* or whatever color you’d like */
    }`

    Will this work for you? Please let me know. 🙂

    Cheers,
    Geoff

    in reply to: Venue #1079765
    Geoff
    Member

    Hey there, @kaplancenter — sorry for the trouble here!

    Do you see the same issue when you switch to a default WordPress theme, like Twenty Sixteen?

    If so, do you see a folder in your theme called tribe-events and does it contain other files in there?

    Let’s start there and see what we find.

    Thanks!
    Geoff

    in reply to: Help I can't see events tickets plus info #1079762
    Geoff
    Member

    Hello Sarah,

    A couple of questions for you:

    • Do you also have Event Tickets installed? If not, please go ahead and install that plugin as well.
    • If you head to Events > Settings > Tickets, is the “Event” option selected (screenshot)? Or, if you are using Event Tickets Plus with other post types, are those post types selected? If not, please select it and save the settings to see if that makes a difference.

    Let’s start there and see what we find. If you’re still seeing the issue, please let me know, then head to Events > Settings > Help, copy the System Information and paste it here as a private reply — that will help me check additional settings.

    Thanks!
    Geoff

    in reply to: Looking for Best Ticketing solution for me #1079757
    Geoff
    Member

    Hey @awakeninghearts, nice to see you again and hope all is well. 🙂

    Good question. I would suggest the following:

    Event Tickets is our base ticketing framework that adds RSVPs to events and Event Tickets Plus adds the ability to integrate and sell tickets for events with WooCommerce. Sounds like you’re already familiar with WooCommerce, so this is the route I would go. I personally like having the tickets sold directly through my own website (rather than linking out to another service like Eventbrite) and this combination will allow you to do that, plus include the reports and responsiveness you’re looking for.

    I also want to point out that we over a full refund on all products within 30-days of purchase. If this combination doesn’t do what you would hope, then you can return it and we’ll take it back with no hassle.

    Let me know if you have any other questions here about Event Tickets or Event Tickets Plus and I’d be happy to help!

    Cheers,
    Geoff

    in reply to: Disable / Hide calendar export buttons #1079749
    Geoff
    Member

    Hi Ben,

    Absolutely! You can add this to your theme’s style.css file or use a plugin like Simple Custom CSS:

    .single-tribe_events .tribe-events-cal-links {
    display: none;
    }

    Will that work for you? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Best way to add ads? Template? #1079736
    Geoff
    Member

    Hey Michael, that’s a great question.

    I think the easiest way to go would be a customizing the calendar template itself. Our Themer’s Guide is a great place to start with template overrides, but it basically boils down to this:

    • Make a copy of the default-template.php template. It’s located at /plugins/the-events-calendar/src/views/default-template.php
    • Make a new folder in your theme file called tribe-events
    • Drop the copied default-template.php file in there

    Now that the template is in the theme, you can modify it to suit your needs. In this case, drop in the ad script where you would like it to display and it will do so on the main calendar template.

    You can repeat this process on the single-event.php file as well to display ads on the event posts themselves.

    Will this work for you? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Release: The Events Calendar 4.0.6 + premium add-ons #1079729
    Geoff
    Member

    Hey there, Rex!

    So sorry for the trouble here and I’d be happy to help.

    First off, will you please follow the steps outlined in this article? It solves most of the issues we see related to 404 errors and is a great place to start.

    Let’s start there and see what we find.

    Thanks!
    Geoff

    in reply to: Displaying venues and using them as landing pages #1079720
    Geoff
    Member

    Hey Neill and thanks for reaching out!

    Shannon’s idea is a great place to start. That, combined with the feature that The Events Calendar allows template overrides. In other words, you can customize the content and layout of any of the calendar templates by copying that file and including it in your theme files.

    Our Themer’s Guide is what you’ll want to check out for more on overriding templates, but it basically boils down to this:

    • Make a copy of the venue template. It is located at /plugins/events-calendar-pro/src/views/pro/single-venue.php
    • Make a new folder in your theme directory called tribe-events
    • Make a new folder inside that one called pro
    • Drop the copied single-venue.php template in that last folder

    Now that the template is in your theme, you can modify it to suit your needs. In this case, you can use the same markup and structure from your post and/or tag archives to get the layout you want and include the content you’d like.

    Does this make sense and will it work for you? Please let me know. 🙂

    Cheers!
    Geoff

Viewing 15 posts - 4,336 through 4,350 (of 10,150 total)