Brook

Forum Replies Created

Viewing 15 posts - 2,296 through 2,310 (of 4,796 total)
  • Author
    Posts
  • in reply to: Can No Longer "Edit Upcoming Events" only #1018620
    Brook
    Participant

    Howdy Kelly,

    I would love to help you with this. It sounds like you are using Google Chrome, and you saw a box underneath the popup message that said “prevent this page from creating additional dialogues”. When you checked this box, Chrome prevents the page from asking you further questions. But this has the side effect of no longer allowing you to edit upcoming.

    To fix this, close your tab and then reopen the WP admin edit page. Chrome will forget the setting, and the page will resume working. Does that fix it as expected?

    I am sorry for the inconvenience here. That popup is not ideal, and was just a necessarily quick solution to a different problem. We would like to revisit it an improve things so you don’t need a popup if possible.

    Cheers!

    – Brook

    in reply to: Pre-Sale Functionality Questions: #1018596
    Brook
    Participant

    Howdy Richard,

    Thanks for reaching out to us with your questions. I would love to help you with this.

    1. This is certainly possible with WooCommerce Tickets
    2. We are working on adding this feature. It will soon be available as a beta. You can signup to try out this beta when it’s released: The Events Calendar Beta Signup Form.
    3. The emails all have templates that can be overriden. The receipt email is sent by WooCommerce, and you can overridde it by following the WooCommerce overrides guide. The email which contains the ticket once the order is approved, has a separate template. It too can be overriden, but by following our Themer’s Guide.
    4. You can specify a list of email address that get notified of any ticket purchase for all events. There is a third party free plugin: The Events Calendar Events Organizer Email that lets you send the event organizer an email notification as well. The event organizer can be specified on a per-event basis, so that email will only get notified for purchases of events they are assigned to.

    Does that answer all of your questions?

    Cheers!

    – Brook

    in reply to: Create a 'All Events Next Month" Page #1018069
    Brook
    Participant

    Howdy Ash,

    I would love to help you with this.  There are a couple of ways to do this depending on your needs:

    1. Use shortcodes. The can even be embedded with PHP using do_shortcode(). We have two PRO Shortcodes, one that embeds a copy of the list widgets, and another that embeds the minical widget.
    2. Use tribe_get_events(). That tutorial walks you through how to use this function to retrieve a set of events within a period of time. Shows you how you can echo them, and so forth.

    If you are not trying to embed this list using PHP, then still check out the shortcodes. The minical by default will only show the current month’s events.

    Does that all make sense? Will that work for you?

    Cheers!

    – Brook

    in reply to: Field errors when importing from CSV UTF-8 #1018055
    Brook
    Participant

    Howdy Abrar,

    I am sorry that is giving you issues. I would live to dive in deeper and take a look. Is it possible that you can share a link to the csv file you are trying to import? There are a few things that can go wrong with the file, and if I can examine it I should be able to find what’s up. If you can share the file itself, and not just the text within it, that would be awesome. Also if you know the name(s) of some of the events that won’t import, mind sharing those too?

    Cheers!

    – Brook

    in reply to: Rich Snippets and Wrong Links In Google Search Results #2 #1018037
    Brook
    Participant

    Howdy Bark,

    That’s a great question. Thanks for sharing all of your research and detailing the problem, that is very much appreciated.

    You do want to edit the widget’s PHP file. Specifically this one: /wp-content/plugins/events-calendar-pro/src/views/pro/widgets/modules/single-event.php. The best way to make changes to it is to “override” it as outlined in our Themer’s Guide. Around line 33, change this:

    <a href="<?php echo esc_url( tribe_get_event_link() ); ?>" rel="bookmark"><?php the_title(); ?></a>

    To this:

    <a href="<?php echo esc_url( tribe_get_event_link() ); ?>" rel="bookmark" class="url"><?php the_title(); ?></a>

    That should fix the issue. You can test this out by using Google’s Structured Data Testing Tool. If it shows that there is a URL field for each hcalendar entry, then you are successful. The next time Google indexes your site, which might take a few days, they will begin linking to the events.

    Does that all make sense? Does that work for you? Please let me know.

    Cheers!

    – Brook

    Brook
    Participant

    That is incredible. Excellent work tracking down the culprit. It would certainly have been unique for a WordPress install to exhaust that much memory. I am glad you were able to narrow down the culprit and find a fix. Sometimes it is best to disable ini_set.

    Thank you for sharing the solution. Please let us know if you ever need anything else. Cheers!

    – Brook

    in reply to: How to change default past events page url #1017230
    Brook
    Participant

    Thank you for clarifying. What is the code you are using for add_rewrite_rule ?

    • Brook
    in reply to: Filter tribe_get_events() by event categories #1017126
    Brook
    Participant

    Excellent. I am happy those links gave you what you need.

    To get multiple categories pass it an array instead of a string. If you are currents setting:

    'tribe_events_cat' => 'catname'

    Then instead you would want to do:

    'tribe_events_cat' => array('catname', 'catname2')

    Does that make sense?

    Cheers!

    – Brook

    in reply to: Events calendar pro #1017123
    Brook
    Participant

    Thank you for marking the answer correct. I take it you ended up requiring an exchange. Please let us know if you need anything else. Cheers!

    – Brook

    in reply to: Events pages are redirecting to home page #1017035
    Brook
    Participant

    Ahh, good to know. Thank you Rob for letting us know what plugin it is. Happy it is working for you now. Cheers !

    – Brook

    in reply to: Modify the search query #1017027
    Brook
    Participant

    That’s understandable Pablo. I think we would be interested in seeing if that is a popular feature suggestion. If this is something you would like to see in the calendar in the future please officially suggest it on UserVoice. Thanks for the feedback!

    Cheers!

    – Brook

    in reply to: Enfold Post slider conflict with Event Calendar Pro #1016814
    Brook
    Participant

    Thanks you Allison. It would seem the error is related to the following SQL query:

    SELECT SQL_CALC_FOUND_ROWS * 
    FROM   (SELECT DISTINCT wp_posts.*, 
                            IF (wp_posts.post_type = 'tribe_events', 
                                   wp_postmeta.meta_value, 
                            wp_posts.post_date) AS post_date 
            FROM   wp_posts 
                   INNER JOIN wp_term_relationships 
                           ON ( wp_posts.id = wp_term_relationships.object_id ) 
                   LEFT JOIN wp_postmeta AS wp_postmeta 
                          ON wp_posts.id = wp_postmeta.post_id 
                             AND wp_postmeta.meta_key = '_EventStartDate' 
            WHERE  1 = 1 
                   AND ( wp_term_relationships.term_taxonomy_id IN ( 55 ) ) 
                   AND wp_posts.post_type IN ( 'post', 'page', 'attachment', 
                                               'revision', 
                                               'nav_menu_item', 'tribe_events', 
                                               'tribe_venue', 
                                                   'tribe_organizer', 
                                               'portfolio', 'avia_framework_post' ) 
                   AND ( wp_posts.post_status = 'publish' 
                          OR wp_posts.post_author = 5 
                             AND wp_posts.post_status = 'private' ) 
            ORDER  BY post_date DESC) a 
    GROUP  BY IF(post_parent = 0, id, post_parent) 
    ORDER  BY eventstartdate ASC 
    LIMIT  0, 10

    This generates duplicate post_date column error. This looks like a query likely generated by our plugin, but its getting mangled. I am going to discuss this with the team and see if they have any ideas on what is mangling it, and how we could reproduce it. It is strange that I am not experiencing a similar error/problem on my end thus far. But perhaps between all of us someone will find something I’ve missed. I will get back to you shortly.

    Thanks for all the details and debugging.

    – Brook

    in reply to: iCal Export and Export Months Events not working #1016807
    Brook
    Participant

    What a puzzling issue. Thanks for giving that a whirl. To answer your original quoted question:

    Where you able to send this to the plugin makers to see if they know what might be happening?

    We really do not. Given our unfamiliarity with App Presser there is only so much help we can be here. I started off by trying to identify what was unique about that link (that it relies on JS) and give you a way to diagnose if that was the issue. That was not. I then did some research on the error and investigated your site, and the only other thing I could find was the display_errors possibility.

    Unfortunately I do not see how we can be of further help when the error only happens in the app and not in the browser. Our plugin is as of now designed to be viewed only in browsers. Anything outside of that is not really supported, and more importantly something we lack experience/training helping with. There are far too many things I do not understand about App Presser to offer anymore diagnostic help here. 🙁

    I am sorry Stacey, I wish I had better news.

    • Brook
    in reply to: Filter tribe_get_events() by event categories #1016729
    Brook
    Participant

    Howdy crewrob,

    Good question. We do have a more extensive knowledgebase article, but it does not directly discuss taxonomies. Instead if just mentions that tribe_get_events() can accept all the same arguments that get_posts() can. First, checkout the documentation on get_posts()’ taxonomies.

    As you can see you will need to pass tribe_get_events() an argument for our custom taxonomy. In the above documentation the tax is named ‘genre’, but in our case it is ‘tribe_events_cat’. So if you pass that argument to tribe_get_events, along with the slug of the category, you can limit it to only posts form that category.

    Does that all make sense? That what you are looking for?

    Cheers!

    – Brook

    in reply to: Events pages are redirecting to home page #1016691
    Brook
    Participant

    Howdy Rob!,

    I would love to help you with this. I had a look at your site and am not seeing that issue with any of the current events. Did this issue already go away, or does it only happen with certain events? If you can point me to an event that it happens on I might be able to identify the source.

    If the issue is still happening, it would be worth trying to flush your permalinks. The first heading in this guide will walk you through flushing your permalinks, but visiting the permalinks settings page and hitting save: Troubleshooting 404 Page Not Found error.

    I look forward to your response and then I can dive into this further. Cheers!

    – Brook

Viewing 15 posts - 2,296 through 2,310 (of 4,796 total)