Nico

Forum Replies Created

Viewing 15 posts - 2,971 through 2,985 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    Perfection! 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,
    Nico

    in reply to: Should I clean up past events – to improve speed? #1149388
    Nico
    Member

    You 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,
    Nico

    in reply to: Pro Version #1149203
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Event #1149199
    Nico
    Member

    Hi 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,
    Nico

    Nico
    Member

    Thanks 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,
    Nico

    in reply to: attendee information field is missing from event. #1149184
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Huge Attendee List #1149183
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Premature closure of the ticket. Calling Nico! #1149180
    Nico
    Member

    This reply is private.

    in reply to: Possible code errors #1149176
    Nico
    Member

    Hey! 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,
    Nico

    Nico
    Member

    Thanks 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,
    Nico

    in reply to: I can“t See fetured image in the list view #1149161
    Nico
    Member

    Hola 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,
    Nico

    PS: please let me know if you want me to switch back to English!

    in reply to: Footer Columns are broken #1149158
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Tickets For Reoccurring Events Showing Wrong Dates #1149140
    Nico
    Member

    Howdy 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,
    Nico

    in reply to: Preselected category #1149070
    Nico
    Member

    Stocked 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,
    Nico

    in reply to: manually add filter bar into the sidebar #1149069
    Nico
    Member

    Hey 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

Viewing 15 posts - 2,971 through 2,985 (of 6,506 total)