Brian

Forum Replies Created

Viewing 15 posts - 2,431 through 2,445 (of 11,256 total)
  • Author
    Posts
  • in reply to: Choose Specific Category for Facebook Imports #1037852
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    Do you have a link to the issue?

    It is hard to tell what is going on without see it.

    You can provide it as a private reply if you like.

    Let me know and we can go from here.

    Thanks

    in reply to: Too much content on main events list #1037849
    Brian
    Member

    Great, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.

    Thanks!

    in reply to: Event title in Woocommerce admin orders list #1037846
    Brian
    Member

    You’re welcome sorry for not having better news.

    Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: Add category to tooltip in monthy view? #1037843
    Brian
    Member

    It is working for me. I am limited troubleshooting customizations.

    I would check to make sure both files are in place in the correct spot in your theme.

    It sounds like the single-events.php might not have been replaced so it is not find the new category json data.

    in reply to: Event title in Woocommerce admin orders list #1037738
    Brian
    Member

    Hi,

    We do not have a feature to do this:

    For the second question: Okay so I can not see all attendees for all events?

    If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.

    http://tribe.uservoice.com/

    in reply to: Add category to tooltip in monthy view? #1037735
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here, however, I am limited in support customizations.

    It is a little trickeier then it looks.

    I cam up with this replace for the single-event.php:

    https://gist.github.com/jesseeproductions/807e85821cfee83f9402

    And this for the tooltip:

    https://gist.github.com/jesseeproductions/aa212099806c6594df6f

    Replaces those in your theme following the themer’s guide:

    https://theeventscalendar.com/knowledgebase/themers-guide/

    That will get you the information and you can take it from there.

    Thanks

    in reply to: php displaying on events page #1037731
    Brian
    Member

    Hey,

    Thanks for reaching out to us and bringing this issue to our attention!

    We’ve got this bug logged in our internal tracking system and will notify you here as we make progress on this issue. I apologize for any inconvenience that this issue has caused.

    In the meantime, you can fix this issue by making some quick modifications to the core plugin. These changes will get overridden with the next update which will include an official fix to this issue.

    Within the main Events Calendar plugin, navigate to the src > functions > template-tags > general.php file and open it within your preferred text editor.

    Navigate to line #1320 within that file. It should look like:

    $excerpt = wp_trim_excerpt( $excerpt );

    You can change that line to be:

    $excerpt = wp_trim_words( $excerpt, '55' );

    Where “55” is the number of words that you would like the excerpt to be there.

    Let me know if you have any further questions or concerns here.

    Thanks!

    in reply to: Problems filtering by category #1037721
    Brian
    Member

    Hi Chris,

    Thanks for purchasing our plugins.

    I can help out here.

    I visited your site and see this warning:

    “NetworkError: 403 Forbidden – http://www.clcmn.edu/wp-admin/admin-ajax.php”

    Do you have the backend blocked?

    If so AJAX will not work for logged out users as the script needs the admin to work.

    Unfortunately, that is how WordPress’s Admin Ajax works.

    Let me know if that is the case and we can go from here.

    Thanks

    in reply to: Deutscher Support #1037718
    Brian
    Member

    Hi,

    We only have people that speak English and Spanish on our team.

    We can try to work through Google Translate, but that is the only option we have.

    Thanks

    Google Übersetzt:

    Hallo,

    Wir haben nur die Menschen , die Englisch und Spanisch sprechen, in unserem Team .

    Wir können versuchen, durch Google Translate arbeiten , aber das ist die einzige Möglichkeit, die wir haben.

    Vielen Dank

    in reply to: Adding Phone Numbers to RSVP Section (Events Tickets Plus) #1037713
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can try to help out here, however, I am limited in supporting the features as is and limited in supporting customizations.

    I looked through the coding and it would not be possible at this time to add a field without modifying the Event Tickets Plugin.

    You can add the field:

    plugins/event-tickets/src/views/tickets/rsvp.php

    After you move it to your theme following our themers guide.

    However, there is no hook to add that field when creating the attendee. So you would have to modify the plugin, but those updates would be lost on each update of it.

    If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.

    http://tribe.uservoice.com/

    Cheers

    in reply to: Sign-up Multiple Attendees #1037710
    Brian
    Member

    Hi,

    Thanks for using our plugins.

    This is not yet a feature for the plugin.

    We are working on it for hopefully the next release, but I do not have a timeline for its release yet.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: Event title in Woocommerce admin orders list #1037708
    Brian
    Member

    Hi,

    Thanks for using our plugins.

    I can try to help out, but can only support features as shipped with the plugin and not have to provide much support on Customizations.

    As for the Orders that is 100% WooCommerce Coding and not sure how to do that. I would search Google and see if anyone has been successful in adding Product Titles from the order in the admin.

    As for the second question.

    We having an Attendees List for each event that you can access from the event listing in the admin.

    If you hover over the title you will see it.

    That is all we provide for listing attendees.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: community event not working #1037698
    Brian
    Member

    You changed themes and resaved permalinks and it still did not work?

    How strange, we have not seen that happen before.

    Have you tried changing the Events Template in the settings?

    Head to this page:

    Events > Settings > Display Tab

    Then change this setting:

    Events Template to Default Page Template

    Or to another setting and see if that helps.

    Thanks

    in reply to: Choose Specific Category for Facebook Imports #1037697
    Brian
    Member

    Hi,

    I came up with this snippet to add a category.

    /**
    * The Events Calendar Facebook Events - Add Category to Imported Events
    * change Facebook Event to the name of the event category
    * @Version 4.0
    */
    add_action( 'tribe_events_facebook_event_created', 'tribe_fb_add_category' );
    function tribe_fb_add_category( $event_id ) {

    wp_set_object_terms( $event_id, 'Facebook Event', 'tribe_events_cat', false );

    }

    Add that to your theme’s functions.php and replace Facebook Event with the name of the category you would like.

    Why doesnt events appear in its specific category link http://website.com/event/category/festival?

    We currently do not support categories from Facebook so there is no coding to deal with it right now.

    Thanks

    in reply to: Tickets and Tickets Plus WPML ready? #1037688
    Brian
    Member

    Ok you opinion is noted, thanks for the feedback.

    I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

Viewing 15 posts - 2,431 through 2,445 (of 11,256 total)