Geoff

Forum Replies Created

Viewing 15 posts - 121 through 135 (of 10,150 total)
  • Author
    Posts
  • in reply to: Edit Find Out More button #1265353
    Geoff
    Member

    Hi Mark,

    Thanks for following up!

    You will find the the following in the template:

    <div class="tribe-events-list-event-description tribe-events-content">
    <?php echo tribe_events_get_the_excerpt( null, wp_kses_allowed_html( 'post' ) ); ?>
    <a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'the-events-calendar' ) ?> &raquo;</a>
    </div><!-- .tribe-events-list-event-description -->

    Again, you may need to play with this a bit on your own, but you should be able to switch out…

    tribe_get_event_link() for tribe_get_event_website_url()

    Then, that will allow you to use the Website URL field in the event editor to redirect the link to the place of your choice.

    Cheers!
    Geoff

    in reply to: Edit Find Out More button #1264959
    Geoff
    Member

    Oh! I forgot to answer your question about removing the recurring event text.You can do that by adding something like this to your theme’s style.css file or on the Appearance > Customize > Additional CSS screen:

    .tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo {
    display: none;
    }

    Cheers!
    Geoff

    in reply to: Edit Find Out More button #1264943
    Geoff
    Member

    Hey Mark,

    Absolutely, that’s totally possible! I would suggest overriding the list/single-event.php template to make that happen. You can learn more about overriding calendar templates in our Themer’s Guide, but it basically boils down to this:

    • Make a copy of the single-event.php template. It is located at wp-content/plugins/the-events-calendar/src/views/list/single-event.php
    • Make a new folder in your theme called tribe-events
    • Make a new folder in that one called list
    • Drop your copied single-event.php file in that last folder

    Now that the template is in your theme, you can modify it to suit your needs. In this case, change the “Find out more” text with your custom text.

    You will need to do a bit more custom work to make the link go somewhere somewhere else. One idea might be to use the Event Website URL field in the event editor:

    Then, you could change the URL in the template so that it uses tribe_get_event_website_url() instead of tribe_get_event_link(). That will take a little work on your end, but I hope that at least helps get the ball rolling!

    Cheers!
    Geoff

    in reply to: Nonprofit Application Pending #1264924
    Geoff
    Member

    Hi Tyler,

    Thanks for getting in touch!

    I’m sorry for the lack of communication on your nonprofit application. It does appear we replied on March 24 and, unfortunately, had decided to not include the organization in our program.

    However, please check for the email because we included a coupon that will provide you with a healthy discount off your purchase.

    Thanks,
    Geoff

    in reply to: Event Aggregator License #1264904
    Geoff
    Member

    Hi Evan,

    Thanks for getting in touch!

    Yes, Event Aggregator is $89 for the license and will grant you access to import events on your site. Events Calendar PRO is sold separately and is not required to use Event Aggregator.

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

    Cheers!
    Geoff

    in reply to: Adding tickets only gives me the option of RSVP #1264893
    Geoff
    Member

    Hey Critter,

    No worries at all! Glad to hear all is working smoothly and I appreciate you following up to let us know. Defintely feel free to let us know if any other questions pop up and we’d be happy to help.

    Cheers and have a great rest of the day!

    Geoff

    Geoff
    Member

    Hi Nicolaas,

    Sure thing, here is an example of the template where I had added a line showing you where to add custom text:

    https://gist.github.com/geoffgraham/e8d8d6160d931dc97ca9cc3398f4bfaa

    Cheers!
    Geoff

    in reply to: Free Licence #1264887
    Geoff
    Member

    Hi Javier,

    Thanks for following up!

    No, I’m afraid that recurring tickets are not yet supported. We are working on that, but it will still be a little while before that feature is available.

    And if I reserve one ticket in english version, it´s gonna rest it in from the stock in the spanish one?

    If I understand correctly, it sounds like you are running a multilingual site in a way where one post is duplicated for each language. Tickets are set up in a way where they are directly tied to the post. If you create tickets for one event in English, then you will need to create tickets for the event in Spanish as well.

    It’s worth noting, however, that neither Event Tickets nor Event Tickets Plus support WPML or other multilingual plugins at the moment. I would suggest testing using Event Tickets first since it is free to see if it will work with your site.

    Cheers!
    Geoff

    in reply to: Automatically sync from another Calendar #1264876
    Geoff
    Member

    Hi James,

    Ah gotcha — thanks for clarifying and sorry I misunderstood the question.

    The Events Calendar has two feeds built into it:

    • An RSS feed that is located at [your-site]/events/feed
    • An iCal feed that is located at [your-site]/events/ical

    Both could be used to populate calendars on other sites. It’s worth noting that the feeds do not push the content to the sites, but the sites will need a method for fetching that content — whether that is automated or manual.

    Hopefully this helps answer your question better than my last attempt.

    Cheers!
    Geoff

     

    in reply to: How Many Plugins #1264336
    Geoff
    Member

    Hi Paul,

    Thanks for getting in touch!

    Sorry for the confusion on our pricing structure. We have built a number of WordPress plugins, so I know it can be confusing to understand how everything works together.

    We have designed things so that each product is adds functionality to our free The Events Calendar plugin. Once you have that plugin, you can enhance it with our various other products, which add premium features:

    • Events Calendar PRO – This adds recurring events, additional calendar views, custom fields and Venue and Organizer pages to The Events Calendar.
    • Filter Bar – This adds a set of filters to the calendar that allows visitors to do advanced searching for events and narrow the results by a number of advanced filters.
    • Event Aggregator – This allows you to import events into The Events Calendar from other sources, like Facebook, Meetup, Google Calendar and iCalendar feeds.
    • Community Events – This allows visitors to submit events to the calendar without accessing the WordPress admin.
    • Event Tickets – This is a free plugin that allows you to create free tickets for events.
    • Event Tickets Plus – This allows you to create paid tickets for events when used with Event Tickets.

    And, yes, we do offer a few select bundles at discounted prices when you purchase multiple products. Here is a list of the available bundles we have:

    https://theeventscalendar.com/bundles/

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

    Thanks,
    Geoff

    Geoff
    Member

    Hey Nicolaas,

    Absolutely, that’s totally possible! I would suggest overriding the wootickets/tickets.php template to make that happen. You can learn more about overriding calendar templates in our Themer’s Guide, but it basically boils down to this:

    • Make a copy of the tickets.php template. It is located at wp-content/plugins/event-tickets-plus/src/views/wootickets/tickets.php
    • Make a new folder in your theme called tribe-events
    • Make a new folder in that one called wootickets
    • Drop your copied tickets.php file in that last folder

    Now that the template is in your theme, you can modify it to suit your needs. In this case, add your instructions just above the start of the tickets table on Line 37.

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

    Cheers!
    Geoff

    in reply to: Going to an Event #1264127
    Geoff
    Member

    Hi Titus,

    Thanks for following up!

    I don’t see this feature in any of our upcoming plans, but I was able to find an open feature request for it. It would be awesome if you could add your vote to that request so we have it on record.

    Cheers!
    Geoff

    in reply to: Pro + Filter Bar = $89? #1264029
    Geoff
    Member

    Hey there and thanks for getting in touch!

    It’s $89 for Events Calendar PRO and $89 for Filter Bar for a total of $178. Both plugins are sold separately. 🙂

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

    Cheers!
    Geoff

    in reply to: Going to an Event #1264028
    Geoff
    Member

    Hi Titus,

    Thanks for getting in touch!

    There is no option for a user to click they are attending an event in The Events Calendar or Community Events.

    However, you can create free tickets for events using Event Tickets. That allows a visitor to effectively RSVP for an event and provides them with an email confirmation they can print and present at the door of the event.

    Cheers!
    Geoff

    Geoff
    Member

    Hi @ibizais,

    Thanks for getting in touch and for using Event Tickets Plus!

    I’d be happy to help you with this. I think the best way to do it is for me to provide you with a refund for your purchase (Order #1260431) and for you to purchase the Ultimate Bundle.

    Would you like me to proceed with the refund? Please let me know and I would be happy to make it happen.

    Cheers!
    Geoff

Viewing 15 posts - 121 through 135 (of 10,150 total)