Forum Replies Created
-
AuthorPosts
-
August 9, 2016 at 7:22 am in reply to: Need to be able to sort events by the date they are created. #1149390
Nico
MemberPerfection! Glad to be service š
Iāll go ahead and close out this thread, but if you need help with anything else please donāt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberYou are welcome š
Iāll go ahead and close out this thread, but if you need help with anything else please donāt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHi there Salman,
Thank for getting in touch and for your interest in our products!
I see that it is $89 for personal plan, is it one time payment or yearly?
Yeap, it’s $89 for a personal license. This will get you a year or updates and support. Once the license expires you’ll get the option to renew the plugin with a 30% discount of the license price. If you don’t renew your license the plugin will continue to work as expected but you won’t receive any further updates or support access.
Please let me know about it,
Best,
NicoNico
MemberHi there Summer,
Thanks for reaching out to us! Unfortunately we are not able to provide support in the pre-sales forum š
We are happy to assist our premium users with support issues via our premium forums, please log into the account that has been created when the purchase was made. If you have not purchased one of our premium plugins, you can post in our open source forum. We review that forum weekly, mainly for bug reports.
I would like to be able to identify which āeventsā are pulled from the calendar to the events page.
Not sure why you mean by this anyway. If you are referring to month view you can use the option to make events sticky and show above others: https://cloudup.com/cs3RqsclwUB
Best,
NicoAugust 8, 2016 at 2:13 pm in reply to: Need to be able to sort events by the date they are created. #1149193Nico
MemberThanks for following up Andrew!
I’m a bit confused about this, could you actually make it work?
I gave this a quick try and this is the one that works for me:
function tribe_dump_events ( ){
$events = get_posts( array(
'posts_per_page' => 8,
'post_type' => 'tribe_events',
'orderby' => 'date',
'order' => 'DESC',
'post_status' => 'publish'
) );echo '
'; var_dump($events); echo '
';
}
add_action ( 'init', 'tribe_dump_events');
When using ‘tribe_get_events’ it seems that the order and orderby clauses are overwritten at some point. Also please note that post_status is the correct parameter to query posts by status and not status as you are using!
Please let me know if this is still an issue or if it’s solved,
Best,
NicoNico
MemberHi there Melanie,
No rush on this! Hope the move is smooth, and please let me know about this: “A few months ago (yes the project that had dragged on and on) I asked how to make the default 1 and got an answer.” I’m guessing it might be causing this!
Best,
NicoNico
MemberHi there Jason,
Thanks for the follow-ups and sorry for the delay in my replies. I can totally understand the frustration this is causing to you and your client š Although I’m not as technically versed as Barry is I’ll give this a try custom page a try because he is out on vacation and won’t be back until the end of the month.
I’ll send you a heads up once I can invest some time on this, probably tomorrow!
Thanks,
NicoNico
MemberThis reply is private.
Nico
MemberHey! Just wanted to give you a heads-up on these messages, I’ve looked into this with a developer from the team but he doesn’t think it’s something worth looking much into unless you are getting this same warnings all the time or for all events. But if they don’t bother it’s safe to ignore them!
Please let me know if there’s anything else I can help you with,
Best,
NicoAugust 8, 2016 at 1:34 pm in reply to: Problem with Event Tickets Plus & WooCommerce Members Discounts #1149173Nico
MemberThanks for following up @neuroticartist!
what? Isnāt this an official Woo Extension? your telling me that you have no intention of looking into what is clearly a bug and what others have posted having the exact same issue, because not enough people have the problem? are you kidding me?
I think you miss-understood me. I just said that we can look into this, but if you use another working plugin the road is much shorter. I’m sorry to other plugin didn’t work for you š
I went ahead and logged this conflict and added your case and the ones you mention for the report to have a higher priority than normal. I don’t have a specific date for the fix to be out, but I linked the report with this thread so you’ll get noticed about it.
Digging our backlog I also found a related issue which solution might work for this too. Paste the code below in your theme (or child theme) functions.php file:
https://gist.github.com/GeoffEW/ef196ef3154a747a851c771ae45fdecd
Hope that helps for now,
Best,
NicoNico
MemberHola Eloisa, como estas?
Me tome la libertad de responderte en EspaƱol ya que veo que el contenido de tus eventos esta en este idioma!
Por lo que veo, estas usando un widget para mostrar esos eventos. Este articulo muestra como agregar la imagen a la lista: Add thumbnails to upcoming events List Widget. Si bien el articulo describe la primer forma de lograr esto como exclusiva para usuarios que no usan Events Calendar PRO tambiƩn puedes utilizarla (el articulo esta un poco desactualizado al parecer).
Prueba el código descripto en articulo y contame si funciona para tu sitio,
Saludos,
NicoPS: please let me know if you want me to switch back to English!
Nico
MemberHi there Andreas,
Thanks for getting in touch with us!
I think it might be a better idea to reach out to Divi support team on this, so they can check why it’s failing. I took a look and it seems that in calendar pages the CSS below is not taking effect because the body doesn’t have the class et_pb_gutters in calendar pages:
@media (min-width: 981px)
.et_pb_gutters2.et_pb_footer_columns4 .footer-widget {
width: 22.75%;
}
@media (min-width: 981px)
.et_pb_gutters2 .footer-widget {
margin: 0 3% 3% 0;
}
For now you can use the snippet below to force the addition of the missing class, but I’d recommend reaching out to Divi support and asking them about the root cause for the issue. Paste the code in your theme’s (or child theme) functions.php file and it should make it right:
/* Force the et_pb_gutters2 body class */
add_filter( 'body_class', function( $classes ) {// bail if the class is already there
if ( isset( $classes['et_pb_gutters2'] ) ) return $classes;// add if it's not there
array_push( $classes, 'et_pb_gutters2' );return $classes;
}, 100 );
Please let me know if this works as expected,
Best,
NicoNico
MemberHowdy Andrew,
Welcome to our support forums and thanks for reaching out to us. I’ll help you here…
The root cause of this issue is that our plugins still don’t support tickets for recurring events yet š
We are working on it for next major release 4.3 coming out next month but there are chances that the feature gets pushed to 4.4 release coming out before the end of the year. TO bettre understand how our releases are organized please take a look at our release schedule ā https://theeventscalendar.com/release-schedule/
I’m sorry not to have a better answer for this right now, but we cannot support a feature that’s not included in our plugin.
Best,
NicoNico
MemberStocked to hear Marlene š
Iāll go ahead and close out this thread, but if you need help with anything else please donāt hesitate to create a new one and we will be happy to assist you.
Hope you have a great week,
NicoNico
MemberHey Kimberley,
Glad to help you out on this issue as well!
You can use the snippet below in your theme (or child theme) functions.php file to print the sidebar after the filter bar is rendered:
/* Show site's sidebar after filterbar */
function show_sidebar_after_filter_bar ( ) {
dynamic_sidebar( );
}add_action( 'tribe_events_filter_view_after_filters' , 'show_sidebar_after_filter_bar' );
It’s a pretty basic form of doing so but I hope you can get started with it š
Best,
Nico -
AuthorPosts
