Forum Replies Created
-
AuthorPosts
-
Andras
KeymasterThis reply is private.
Andras
KeymasterHello again,
Had some discussions with the team on this. Generally that approach is not recommended. I believe you would need to do major modifications to the plugins (at least replacing class names and so) and you would need to do that with every plugin update.
So this is what I rather got for you:
“she’d be far better off to do some (much smaller) custom dev work that modifies the default post status according to whether the user is ‘premium’ or not. […] a simple usage of the
tribe_get_single_optionfilter hook would get them on track here”There is “an option that they configure that makes it work in one of those two methods.” (Events > Settings > Community tab > Allow anonymous submissions)
“at which point, she could filter that option and have it return a different value for premium users.”
Does this help, Marianne?
Andras
Andras
KeymasterHello Marianne,
Thanks for using our plugins and welcome to the forums!
A great question you have there. Unfortunately that is not possible out of the box with our plugins.
It most probably can be done with some custom development, but it would take knowledge in php and html to do it.
I am able to answer some questions to help you get started on a customization, but for the most part that is beyond the support we can provide.
I can also share with you a list of developers who could help you with this. They are well known in the community and are not affiliated with us:
Let me know if you have any follow up questions.
Thanks and cheers,
AndrasMarch 16, 2017 at 7:30 am in reply to: How to adjust stock manually (RSVP) after moving attendee #1255043Andras
KeymasterGrüss dich Arne,
Thanks for using our plugins and thanks for reaching out! Let me try to help you with your question.
In the case of RSVPs you will need to edit the RSVP itself and increase the stock by 1 (or the number of tickets moved). In your case the end result will be 8/10 for E1, and 8/8 for E2.
The only other way of adjusting RSVPs would be to dig into the database and make adjustments there manually. If you are interested in how to do this I can look it up and send you the details.
A possible workaround for the RSVP would be creating a (WooCommerce) ticket which costs €0. Adjusting the stock for that is a bit better, see here below.
As for tickets (and WooCommerce) the case is a bit better. You need to open the WooCommerce product page of the ticket for editing. https://cloudup.com/cFEYCLS2noh
Then increase the inventory count and decrease the “total_sales” custom field. See the screenshot: https://cloudup.com/cSRxmzM5pnP
I hope this helps and do let me know if you have further questions regarding this topic.
Cheers,
AndrasMarch 16, 2017 at 5:11 am in reply to: Month View Navigation (prev/next) doesn’t stick to language (WPML) #1254992Andras
KeymasterHallo nochmal,
So I tested it with a brand new install with the steps outlined above and I could reproduce the issue you outlined. So indeed, we might be facing a bug here. I will open an internal bugticket for this so our developers can take a look at it and develop a fix.
What I can tell you at this point is that the fix will most probably not be done in the next maintenance release as that one is well under way. More likely in the next one.
I am going to set the status of this ticket to “pending fix” and we will update it once the fix is released. If you have any new questions or issues please create a new ticket and reference this one.
Thanks and cheers,
AndrasMarch 16, 2017 at 3:38 am in reply to: Month View Navigation (prev/next) doesn’t stick to language (WPML) #1254979Andras
KeymasterHello again Mister,
Thanks for reaching out and I’m sorry about this issue.
I tested this on my existing local setup which has WPML and so far I wasn’t able to recreate it.
I will try to do it again following your steps and will get back to you with my findings.
Thanks for your patience!
Cheers,
AndrasMarch 16, 2017 at 3:29 am in reply to: Event Categories show up twice when translated (for month/single-event.php) #1254975Andras
KeymasterHello Mister,
Thanks for using our plugins and welcome to the forums!
Wow, thank you for the detailed guide and testing, this is a great starting point!
I will need some time to investigate this, I ask for a bit of patience. We’ll get back to you soon.
Thanks,
AndrasAndras
KeymasterGreat, thanks for the quick reply!
If you need anything else related to this topic or another please post a new one in the forum and we will be happy to help you out.
Good luck with your project!
Cheers,
AndrasPS: If you like our plugins, and you didn’t yet do so 🙂 we would be happy to receive a review in the wordpress.org repository. Thanks!
https://wordpress.org/support/plugin/the-events-calendar/reviews/PS2: We’d be also grateful if you would give us feedback on your satisfaction with support. Just click on one of the classy looking emojis below. 🙂 If you can spare a few words, that’s even better. Doublethanks!
March 16, 2017 at 3:16 am in reply to: Paypal Weiterleitung und Bestätigung der Zahlung funktioniert nicht #1254969Andras
KeymasterOlaf, danke fürs Testing.
Weil das Problem auch mit normale Produkte entsteht, sieht es so aus dass das ein generelles Problem entweder mit WooCommerce und / oder mit der PayPal gateway ist.
Leider kann ich dir hier nicht helfen. In diesem Fall würde ich dir empfehlen Kontakt mit WooCommerce Support aufzunehmen, das ist ihr Feld.
Sobald es mit gewöhnlichen Produkten gut funktioniert und da gibts immer noch Probleme mit Tickets können wir das tiefer angucken.
Ich lasse dieser Topic offen, bitte lass mich wissen was die WooCommerce Team sagt und wenn das Problem erhoben ist.
Danke und grüsse,
Andras
Andras
KeymasterThis reply is private.
Andras
KeymasterHi Paul,
That looks like a great workaround for this functionality. Great job!
If you think the “Break from Series” would be a good feature for our Community Events plugin, then feel free to propose that on our UserVoice page, and if it gets enough support we might just develop it.
Is there anything else related to this topic or can I close it as it seems resolved?
Thanks and cheers,
AndrasAndras
KeymasterThis reply is private.
Andras
KeymasterHi Brian,
If all goes well, then the .po files will also be updated in the next MR. Hopefully the Gods or Gettext and .po.mo will be with us. 🙂
If you want to be able to translate it now, then just follow the instructions in my previous post.
Cheers,
AndrasMarch 15, 2017 at 8:02 am in reply to: How would I wrap List View events after month separator in a div? #1254477Andras
KeymasterThis snippet should get you started on this:
function wrapper_callback( $string ) { if ( isset ( $string ) && $string != "" ) { $string = '</div><!– end my wrapper div –>' . $string . '<div class="my-wrapper-div">'; } return $string; } add_filter( 'tribe_events_list_the_date_headers', 'wrapper_callback' );Unfortunately this is not perfect as it will include the closing div before the first date header, so the HMTL markup will be totally bad.
Also you will need to figure a way to close the div at the end of a page.
Let me know if this helps, or if you have further questions.
Cheers,
AndrasAndras
KeymasterHello Paul,
Thanks for reaching out!
Allowing users to break up a recurring event on the front end is not a current functionality of the plugin.
Most probably that feature could be implemented with a bit of customization. Unfortunately we are limited in supporting customizations, but here is a list of developers who could help you out with this:
<span class=”paragraph”>list of freelancers</span>
I hope this helps. Let me know if you have any other questions.
Cheers,
Andras -
AuthorPosts
