Geoff

Forum Replies Created

Viewing 15 posts - 3,346 through 3,360 (of 10,150 total)
  • Author
    Posts
  • in reply to: 404 Errors #1121144
    Geoff
    Member

    Thanks for the info, Alex!

    I checked the setting, visited the site, and it looks like everything is working smoothly now. I clicked around a bit and all the calendar pages and events seemed to be accessible:

    http://www.pyc.hexdevelopment.com/calendar/

    Is everything working for you now as well? If there are particular 404 errors, please send them over and I’d be happy to look at them.

    Thanks!
    Geoff

    in reply to: Filter bar questions #1121141
    Geoff
    Member

    Hey Magnus, I see my last reply was marked as the correct answer. I’ll go ahead and close this thread but please feel free to open a new one if any other questions pop up and we’d be more than happy to help.

    Cheers!
    Geoff

    in reply to: hide custom field from events submission form #1121140
    Geoff
    Member

    Hi Joe,

    Here’s something that works for me when trying to hide the first custom field on the page:

    .tribe-events-community-details tr:nth-child(2) {
    display: none;
    }

    Does that work for you too? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Using additionnal field inside a template #1121136
    Geoff
    Member

    My pleasure. Thanks again for getting in touch and for using Events Calendar PRO. 🙂

    Geoff

    in reply to: Import events from another site. RSS preferred #1120908
    Geoff
    Member

    Hey Brian, thanks for reaching out!

    Great question. There are certainly RSS-to-WordPress plugins out there that will convert the entries from RSS to WordPress posts. However, I am not familiar with one that specifically works with custom post types, which is what events are.

    Right out of the box, The Events Calendar will import events from a CSV file. If your parent site has the ability to generate a CSV export of events, then that would be an easy way to go.

    If the parent site does not export a CSV file, but an XML one instead, then it might be possible to use the built-in WordPress Importer.

    Lastly, we do have an extension called iCal Importer that can be used to import events from a valid iCal URL into The Events Calendar. If your parent site has an iCal URL, then this should allow you to import the events programmatically.

    Those are the three methods that The Events Calendar can be used to import events from other calendars. Will either of them work for you? Please let me know. 🙂

    Cheers,
    Geoff

    in reply to: 404 Errors #1120904
    Geoff
    Member

    Hey Alex,

    I’m happy to look at this with you!

    To get started, will you please head to Events > Settings, copy the System Information at the bottom of the screen and paste it here for me as a private reply? That will help me check your settings and some other information.

    And, just to confirm, you already tried the steps outline here, correct?

    Fixing HTTP 404 errors

    Thanks so much!
    Geoff

    in reply to: 404 Error #1120901
    Geoff
    Member

    Hey Alex,

    It looks like this thread is a duplicate of another one you opened shortly before it:

    404 Errors

    I’ll go ahead and close this one and we’ll see you in the other thread. 🙂

    Cheers!
    Geoff

    in reply to: Missing fields in Photo View after update. #1120671
    Geoff
    Member

    Hi Shannon,

    Thanks for following up. While I realize the path to an answer was not ideal for you, I really am glad that you arrived at one and I appreciate you sharing it here with us.

    I do hope we have another chance to work with you again soon and that, when we do, the experience will leave a much better taste in your mouth. I believe there were miscommunications here in this thread (on both sides) and I’m confident the next time through will be better, just as it was in your first thread.

    I’ll go ahead and close this thread but please do feel free to open a new one if any other questions come up and we’d be more than happy to help you there.

    Best,
    Geoff

    in reply to: hide custom field from events submission form #1120665
    Geoff
    Member

    Hi Joe,

    You could still likely use CSS to accomplish hiding one particular custom field. For example, the first one:

    #event_custom:first-child {
    display: none;
    }

    There may very well be other ways to do this but I believe that would take a fair bit of custom development.

    Cheers,
    Geoff

    in reply to: Using additionnal field inside a template #1120661
    Geoff
    Member

    Oh shoot, I noticed a typo — sorry about that!

    This worked for me:

    <?php echo Tribe__Events__Pro__Custom_Meta::get_custom_field_by_label( 'Dress Attire' ); ?>

    Geoff

    in reply to: Multiple Name Fields and Agent Accounts #1120651
    Geoff
    Member

    Hello Ali, thanks for following up!

    One more question: Can we employ discount coupons?

    It depends on the ecommerce plugin you are using, but yes this is possible. For example, WooCommerce integrates with our Event Tickets and Event Tickets Plus plugins and allows you to create coupons for the products you sell, including tickets.

    Also: are your plugins compatible with the ones outlined here?

    I wish I could answer this, but I haven’t personally tested our plugins with all of the ones listed in there. I have heard success stories about integrating with the Product Bundles plugin, but I’m much less familiar with the others. The best way to know for sure is to try them on your site — I will note that we have an awesome refund policy that allows you to return any of our products within 30 days of purchase. 🙂

    Cheers!
    Geoff

    in reply to: How to tell if a calandar has an ical feed or not #1120646
    Geoff
    Member

    Hey Lars and thanks for following up!

    While there isn’t a way to disable the iCal feed from The Events Calendar in the settings, you can remove the links that promote it on the front end of the website:

    https://theeventscalendar.com/knowledgebase/remove-ical-and-google-calendar-links-from-single-event-view/

    I’ll go ahead and close this thread but please let us know if any other questions pop up and we’d be more than happy to help. 🙂

    Cheers,
    Geoff

    in reply to: Adding an "add event" button to tribe events bar #1120642
    Geoff
    Member

    Awesome, so glad to hear it! Thanks so much for following up and for using the plugins. 🙂

    Geoff

    in reply to: Adding an "add event" button to tribe events bar #1120401
    Geoff
    Member

    Hey Ashley and welcome to the forums! I hope you’ve been enjoying Events Calendar PRO and Community Events so far and appreciate you using them. 🙂

    This is absolutely possible, but will take a little bit of custom development on your end to make it happen. We have more information on how to customize the calendar’s templates in our Themer’s Guide, but it basically boils down to this:

    • Make a copy of the bar.php template. It is located in /wp-admin/plugins/the-events-calendar/src/views/modules/bar.php.
    • Make a new folder in your theme directory called tribe-events
    • Make a new folder in that one called modules
    • Drop your copied bar.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 will want to add the code for a button where you would like it to appear in the template.

    Will this help you get started? Please let me know. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hey Jared, thanks for reaching out!

    I see exactly what you mean. That was indeed an issue in a previous release but it appears to have snuck it’s head back in somehow.

    I’ve re-ticketed this so we can patch it back up. While I don;t have a concrete time for when it will be fixed, I will certainly do my best to follow-up with you here directly when we know more.

    Thanks so much for the heads up!
    Geoff

Viewing 15 posts - 3,346 through 3,360 (of 10,150 total)