Forum Replies Created
-
AuthorPosts
-
October 18, 2017 at 2:35 pm in reply to: Can event owner see rsvp lists with "Community Events?" #1365680
Cliff
MemberI’m unclear what you define as a Community Member.
If it’s someone who attends events (submits an RSVP), they can do this already with only Event Tickets: https://theeventscalendar.com/knowledgebase/display-a-list-of-attendees-events/
If it’s someone who creates events and tickets, that’s what the Community Events (create events) and Community Tickets (create tickets) add-ons are for.
If you have Community Tickets, yes, each event creator can see all their event’s attendees on the front-end (not having to have access to the wp-admin Attendees Report).
Please let me know if you have any follow-up questions on this topic.
October 18, 2017 at 2:01 pm in reply to: Single Woocommerce ticket "product" for event with multiple ticket types #1365665Cliff
MemberThanks for being thorough.
Your template overrides (e.g. tickets.php) shouldn’t affect anything because of the hook my snippet is using.
Are you using the latest versions of WooCommerce and all our plugins?
As a test, you could remove all custom code applying to our plugins from your functions.php file — especially anything regarding WooCommerce or visibility — and run only the snippet I provided (make sure to not include the opening <?php tag from my snippet).
Cliff
MemberThanks for the update, Rob.
Please enable Anonymous Submissions or provide me an Administrator login in a Private Reply and I’ll be able to look at your Community Events form.
October 18, 2017 at 12:52 pm in reply to: Ticket field does not show up on submit an event form. #1365629Cliff
MemberJennifer, I see their site is still down with the same message so I’ve pinged Management about this issue. I was personally surprised to see no mention of “PayPal” on the Community Tickets sales page. I assumed some text like, “Make sure you’re approved by PayPal before buying this plugin,” would have been on there, but there’s actually no mention of PayPal at all.
We have a direct contact at PayPal that we’ll try to sort this out with and report back to you. I’ll reply as soon as we have some definitive response, but I can’t guarantee when that might be. Thanks for your patience and understanding.
Cliff
MemberAlthough the word “sticky” is used, it’s not the built-in https://codex.wordpress.org/Sticky_Posts functionality.
Instead, Events indicated as “sticky” have their menu_order set to -1
You should be able to leverage the tribe_events_query_posts_orderby filter and apply your custom querying and/or sorting, such as menu_order ASC
To target the Week View, you could use ‘week’ === $query->query_vars[‘eventDisplay’]
Please let me know how things go for you.
October 17, 2017 at 4:35 pm in reply to: Where to Place acf_form_head() to Save Submitted Data #1364986Cliff
MemberSteven, this code snippet should get things working for you:
https://gist.github.com/cliffordp/9c88e97e5f2392b1c36eabb248a50b11
Please let me know how this goes for you.
October 17, 2017 at 3:57 pm in reply to: Can event owner see rsvp lists with "Community Events?" #1364972Cliff
MemberHi, Cody. Yes, our Community Tickets add-on allows your site users to create new events and sell tickets. However, it doesn’t have native integration with BuddyPress. These exist though:
- Feature request: https://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/3837044-integration-with-buddypress
- 3rd party plugin: https://shop.opentuteplus.com/product/the-buddypress-events-calendar-community-events/ (third-party, not guaranteed or supported by us)
When buying multiple plugins, please check out our Bundles: https://theeventscalendar.com/bundles/
Last but not least, we have a pretty great Refund Policy so you can buy one or many of our add-ons and thoroughly test them.
I hope this info helps. Let me know if you have any follow-up questions.
Cliff
MemberHi, Kathy. Thanks for your interest in our plugin suite.
Event Aggregator can import from one or many Google Calendar iCal URLs (only public ones): https://theeventscalendar.com/knowledgebase/import-events-from-google-calendar/
If this looks like something that might work for you, please purchase it and reference its New User Primer: https://theeventscalendar.com/knowledgebase/new-user-primer-event-aggregator/
Last but not least, we have a pretty great Refund Policy so you can buy one or many of our add-ons and thoroughly test them.
I hope this info helps. Let me know if you have any follow-up questions.
Cliff
MemberHi, Mat.
You can go to one of two places:
- wp-admin > Settings > General > Time Format
- wp-admin > Events > Settings > Display tab > “Date Format Settings” section
Please note that you posted in our Pre-Sales forum from a user account that doesn’t have any purchases associated with it.
We don’t answer support questions for The Events Calendar core/free or Event Tickets core/free or their paid add-ons in the Pre-Sales forum.
If you made your purchase(s) through a different user account, please login to that account and then post in one of the paid forums.
Thank you for your understanding and thank you for using our plugins.
===
Possibly helpful references:
- Our plugins’ feature requests forum
- Our plugin’s widgets and shortcodes
- Our free support forum for The Events Calendar (for bug reports and users helping each other — no usage support provided by us)
- Our free support forum for Event Tickets (for bug reports and users helping each other — no usage support provided by us)
Cliff
MemberI understand. Feel free to open a new thread whenever you’re ready for help on this topic again.
Cliff
MemberAlex, we’ve been a bit swamped here. I’ve checked with the developer assigned to help us here and we should get a reply to you by the end of this week. Sorry for the delay.
October 17, 2017 at 3:09 pm in reply to: Ticket field does not show up on submit an event form. #1364946Cliff
MemberSorry, Jennifer, but we have no control over the PayPal Chained Payments system. I have confirmed the http://www.paypal-apps.com/ site currently says it’s down for maintenance.
Months ago, the PayPal Chained Payments system changed to be a manual approval process. In other words, it’s not being offered to new customers.
You’ll need to work all those details out with them, possibly requiring a phone call to them.
October 17, 2017 at 2:53 pm in reply to: Where to Place acf_form_head() to Save Submitted Data #1364941Cliff
MemberI see from your image that you tried it but it didn’t work. (Even though this isn’t the ideal way to implement it long-term.)
Since you want it in wp_head(), I think the best way is to actually use that hook.
You could reference this is_community_page() method as a check inside the code you hook into wp_head(): https://github.com/moderntribe/products-extensions/blob/master/tribe-ext-community-currency-symbol/index.php#L294-L331
Please let me know how this goes for you.
October 17, 2017 at 12:59 pm in reply to: Single Woocommerce ticket "product" for event with multiple ticket types #1364913Cliff
MemberThe break; part of this code (excerpted from the gist) should only result in a single result, not multiple even if they have the same price:
$least_expensive_wooticket = ”;
foreach ( …
if ( …
break;Did you try the full gist’s code (not just one of the two functions) and things still didn’t work?
If it didn’t work, please provide as much detail about it that you can, such as where and how you implemented the custom code.
Cliff
Member1)
when entering a calendar event, go directly to a page or post without going through the default page of the event
Could you explain this in greater detail? A screen capture video might be really helpful. Jing makes that easy if you don’t have another way you’d prefer to record and share it.
2)
besides managing their own categories, to choose another category of the module of wordpress entries
Are you saying you want Post Categories to appear in the wp-admin Event edit screen in addition to Event Categories?
-
AuthorPosts
