Nico

Forum Replies Created

Viewing 15 posts - 5,476 through 5,490 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    This reply is private.

    Nico
    Member

    Denise,

    Thanks for following up on this once again, glad to hear you could find a work around for now … Hope next time the importer works as expected.

    You can also add this snippet to your theme’s functions.php file, to prevent this from happening at all:


    /*
    * Prevents iCal importer from saving a copy of "deleted" events
    * This means when you rerun an import, it will reimport any events you previously deleted
    */
    function tribe_ical_dont_save_deleted () {
    $ical_importer = Tribe__Events__Ical_Importer__Main::instance();
    remove_action( 'before_delete_post', array( $ical_importer, 'deletedEventSave' ) );
    }
    add_action( 'wp_loaded', 'tribe_ical_dont_save_deleted' );

    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

    Nico
    Member

    Hi Grégoire,

    Well, not sure what’s going here. I find strange the fact that testing with TweentyTwelve works but not with TwentyThirdten. I’m also not seeing any other reports of this actually.

    When testing this, Did you disabled all plugins (not ours of course)? Can you try to remove the widget and add it back again? Are you applying any filters to the widget (category or tag)?

    Thanks for the patience while we solve this,
    Best,
    Nico

    in reply to: Cost!!! #1015945
    Nico
    Member

    AD,

    Thanks for following up! Not sure if I’m getting you right here. If you want to show a ‘free’ sign for events which cost is zero, you can do something like this:


    function verbatim_cost_field( $cost, $post_id ) {
    $event_cost = get_post_meta( $post_id, '_EventCost', true );

    if ( $event_cost == 0 ) $event_cost = 'Kostenlos';

    return esc_html( $event_cost );
    }
    add_filter( 'tribe_get_cost', 'verbatim_cost_field', 10, 2 );

    Please let me know if this makes sense to you,
    Best,
    Nico

    in reply to: Añadir filtros a Filter Bar #1015944
    Nico
    Member

    Carlos,

    Veo que marcaste mi respuesta como correcta, por lo cual supongo que vas a esperar al lanzamiento de la versión 4.0 de Events Calendar PRO.

    Voy a cerrar este ticket, si necesitas algo mas sentite libre de abrir uno nuevo y con gusto te vamos a ayudar 🙂

    Saludos,
    Nico

    in reply to: Facebook events importing duplicates #1015943
    Nico
    Member

    Hey Dj,

    Thanks for jumping in here, and glad to hear you are loving the plugin 🙂

    For now I’m just waiting for @Doug to confirm is he can set up the “clean test site” to reproduce this.

    Unfortunately I can’t see an easy way of doing what you describe regarding the image duplication. There’s a filter to prevent image import from Facebook, I don’t think this is what you are looking for, but take a look at Brook’s reply to this thread: https://theeventscalendar.com/support/forums/topic/do-not-import-images/#dl_post-87565

    Best,
    Nico

    in reply to: Disable filters plugin on month view. #1015934
    Nico
    Member

    Hey James, glad I could help you out with this one 🙂

    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

    Nico
    Member

    Hi Cristina,

    Thanks for reaching out to us, and sorry to hear about this issue 🙁

    This was fixed for ‘English language sites’ in a maintenance release recently, but I can confirm this is still a bug for ‘non-english sites’. I created a bug report in our product back-log and hope to see this fixed soon.

    Sorry for this once again and thanks for reporting it,
    Best,
    Nico

    in reply to: View More link not working #1015849
    Nico
    Member

    Hi Shana,

    Thanks for reaching out to us! Sorry to hear about this issue, hopefully I can help you here 🙂

    I just tested this on my end with latest versions of The Events Calendar and Events Calendar PRO, and it seems to work as expected (link to the main events view). I’m not able to reach to your site as it’s password protected, but a few questions might help… Are you using the shortcode with any parameters? Is it placed on the body of a page or in a sidebar or other part of the page?

    Also, Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.

    Best,
    Nico

    Nico
    Member

    Hey Denise,

    Thanks for following up and sorry to hear the protocol switch didn’t solve the issue 🙁

    It shows the events to be imported but then doesn’t import them.

    This is how the iCal importer works actually. Deleted events won’t be re-imported, the system saves a ‘note’ for those. Add this snippet to your functions.php file and load the page a couple of times to delete the ‘notes’ for the deleted events. After this you should be able to re-import them.


    /* Deletes 50 posts per page load*/
    $posts = get_posts( array( 'numberposts' => 50, 'post_type' =>'deleted_event') );
    if (!empty($posts)) {
    foreach ($posts as $post) {
    wp_delete_post( $post->ID, true);
    }
    } else {
    echo 'Done deleting!';
    }

    Please try this out and let me know if re-importing works well with http:// protocol,
    Have a great weekend,
    Nico

    in reply to: Course list widget CSS #1015474
    Nico
    Member

    Stocked to hear that fix worked out as expected 🙂

    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.

    Cheers,
    Nico

    Nico
    Member

    This reply is private.

    Nico
    Member

    This reply is private.

    in reply to: Different prices #1015366
    Nico
    Member

    Daniella,

    I can totally get you point here, and I know this is a bummer in cases like yours.

    Our tickets framework is going under a big refactor that will allow us to add features like this in the future, so hopefully this will be supported in the feature. In the meantime you are welcome to add your voice in our User voice page, there you’ll see some related feature request like ‘global’ tickets stock, support for product variations and more.

    I’ll go ahead and close out this thread as you marked as resolved, 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.

    Cheers,
    Nico

    in reply to: Admin Panel Issue – No Add Event #1015364
    Nico
    Member

    Hey @slightlynervous,

    Glad you could sort this out 🙂

    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.

    Have a great weekend,
    Nico

Viewing 15 posts - 5,476 through 5,490 (of 6,506 total)