Nico

Forum Replies Created

Viewing 15 posts - 3,406 through 3,420 (of 6,506 total)
  • Author
    Posts
  • in reply to: How to limit widget events by date #1131526
    Nico
    Member

    Hi Ryan,

    Thanks for reaching out to us on this!

    Ryan, I believe you could use tribe_get_events() to get the posts you want and then use those posts in the tribe_get_list_widget_events filter.

    Let’s see how to actually do this! Place the code below in your theme (or child theme) functions.php file:


    /* Custom query for event list widget*/
    function tribe_custom_list_widget_events ( ){

    // uncoment the line below and fill in your custom args
    //$args = array( 'start_date' => $today )
    $args = array();

    $posts = tribe_get_events( $args );

    return $posts;
    }

    add_filter( 'tribe_get_list_widget_events', 'tribe_custom_list_widget_events' );

    Other alternative is to modify the query that the widget uses internally with the tribe_events_list_widget_query_args filter. But you should be fine with the above.

    Please let me know if it works for you,
    Best,
    Nico

    in reply to: 4.2.1 did not fix the list view width issue #1131438
    Nico
    Member

    Hi Danny,

    Thanks for the report, and sorry for the miss-communication.

    I’ve logged this as a bug per your report, and because there was a similar issue with photo view (which indeed is fixed by the release). It seems the fix is still being overwritten by another CSS rule so we are looking into this to decide if we incorrectly logged it as a bug or if the fix failed here.

    Just for the record, were you seeing the description at 100% before a certain plugin update? Or the width was always less than 100%?

    Please let me know about it,
    Best,
    Nico

    in reply to: Community Events Documentation Error #1131431
    Nico
    Member

    Hi there @huroncounty,

    Thanks for reaching out to report the error in our themer’s guide. I could confirm this and updated the guide already, sorry for the hassle!

    What you describe in your last reply is actually how this works. Placing a custom CSS file for this will override the one loaded by the plugin. If you just want to add some style on top of the default one, you can place it in your theme (or child theme) stylesheet or even via Simple Custom CSS plugin.

    Thanks again for reporting this,
    Best,
    Nico

    in reply to: Category Pages – unique html content #1131425
    Nico
    Member

    Hey Ben,

    Thanks for reaching out to us on this!

    What you describe sounds possible with the help of a code snippet, but surely not doable from the Event Settings. If you use a snippet for this the content for the category pages will be ‘hardcoded’ into the snippet, this means you won’t be able to edit it like you do with the default html field. Do you think this solutions works for you anyway?

    Please let me know about it,
    Best,
    Nico

    in reply to: Recreate the site on wordpress #1131421
    Nico
    Member

    Hi there Charlo,

    Thanks for reaching out in such a detailed way and for your interest in our products.

    From what I understood I don’t think our plugin is designed for a use case like yours. The ‘buy tix pop-up’ in your actual site doesn’t look like something you would be able to recreate easily with our plugin unfortunately ๐Ÿ™

    Tickets sold in 15 minute time slots (4 time slots per hour) โ€“ per haunt

    You’ll need to manually create a ticket for each time-slot, for example: ‘Haunted Manor General Admission (5:00-5:15)’, ‘Haunted Manor General Admission (5:15-5:30)’, etc. Also this tickets will live inside an event (or post, page, etc) and you’ll need to recreate them for new events.

    When someone purchases a โ€œCOMBO GENERAL EXPRESS PASSโ€ the user will select one time slot…

    This is not covered at all, and it would require a lot of time and custom code to get this going.

    Please let me know if you have any follow-up questions on this,
    Best,
    Nico

    in reply to: License on multiple wp instaces #1131415
    Nico
    Member

    Hi Peter,

    Thanks for reaching out to us and for you interest in our products!

    For the scenario you describe you’ll need to purchase a business license. We can give you a little discount as all the licenses are for the same project ๐Ÿ˜‰

    Reach out to support at theeventscalendar dot com for the coupon and be sure to include a link to this conversation.

    Best,
    Nico

    in reply to: Maintaining individual translations #1131282
    Nico
    Member

    Hi Teme,

    Thanks for reaching out and sorry to hear about this issue!

    Hopefully there’s a method to get around this: How to Override Plugin Language Files. Please note that this feature is pretty recent and will require 4.2 version or above of our products!

    Please let me know if this works for you,
    Best,
    Nico

    in reply to: User / Member Variable Ticket Pricing #1131279
    Nico
    Member

    Hey Blake,

    Thanks for reaching out and for thinking about Event Tickets Plus for your project ๐Ÿ™‚

    Having different prices depending on the user role is not a feature of our plugins. But if you are planning to use WooCommerce as the e-commerce plugin you can use WooCommerce Role Pricing add-on for this. I haven’t tried it our personally but one of our developers mentioned it works fine with Event Tickets and Event Tickets Plus, so it’s worth giving it a try!

    If you are up to give this a spin you can go ahead and purchase the products for testing. If you decide they are not what you are looking for, you can ask for a full refund within 30 days of purchase. For more information take a look at our refund policy.

    Please let me know if this answers your question,
    Best,
    Nico

    in reply to: Removing slug error message #1131277
    Nico
    Member

    Hi there Stephan,

    Thanks for reaching out to us on this! I can help you out ๐Ÿ™‚

    If you dismiss the notice (x icon top right) it won’t show up anymore for that user. But if for some reason you want to hide it permanently for all users, just add the snippet below to your theme (or child theme) functions.php file:

    /* tribe remove slug conflict notice */
    function tribe_remove_slug_conflict_notice ( ) {

    if ( !class_exists('Tribe__Admin__Notice__Archive_Slug_Conflict') ) return;
    remove_action( 'admin_init', array( Tribe__Admin__Notice__Archive_Slug_Conflict::instance(), 'maybe_add_admin_notice' ) );
    }

    add_action ( 'init', 'tribe_remove_slug_conflict_notice' );

    Please let me know if that works,
    Best,
    Nico

    in reply to: PRO widget template #1131265
    Nico
    Member

    Perfecto ๐Ÿ™‚

    Glad to hear this is solved. 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

    This reply is private.

    in reply to: Calendar Page Title #1131167
    Nico
    Member

    Sure Gene:


    /* hide theme page title in calendar views & single event views */
    .post-type-archive-tribe_events #pagetitle,
    .single-tribe_events #pagetitle {
    display: none;
    }

    Give it a try and let me know if you are happy with this solution,
    Best,
    Nico

    in reply to: Custom Fields not showing in Front-End #1131162
    Nico
    Member

    Hey Tobias,

    Thanks for sending over the system info and the link. What I notice is that you are hiding the ticket amount selector (https://cloudup.com/coiZwdZY3OK), when the value of this input is changed to 1 (or more) then the name, email and attendee meta fields are shown. If you switch to default theme (I know you already did) you should see this input, please try to select a value greater than one there.

    Best,
    Nico

    in reply to: License Keys not #1131157
    Nico
    Member

    Hi there,

    I’ve re-tried after upgrading the plugins to 4.2.1 and everything went smoothly. Also, the license input wasn’t showing up before because WooCommerce wasn’t active, silly mistake on my side.

    Maybe you can talk about this with your client, we only support bugs actually and no new feature gets release to WooTickets, only to Event Tickets Plus. Updating should be smooth, if you have a staging site just try deactivating WooTickets and activating Event Tickets and Event Tickets Plus. Some things in the front end might need a little styling adjustment, and it would be necessary to give the functionality a general check, but other than that it should be simple!

    Can you try to update TEC to version 4.2.1 and re-check? I’m not sure if this will fix it for you. In case it doesn’t I’ll try to make a snippet to save the license directly into the database.

    Best,
    Nico

    in reply to: Mixed language problems after update #1131113
    Nico
    Member

    Hey Michael,

    Still not sure about it but thanks for the tests. Just a confirmation, when everything was set to English did it work as expected (in English I mean)? Does this happen when using the core plugin or when you use both?

    Also, it would be great if you could share your system information with me so I can check if everything looks right on that end.

    Can you check if you have a WPLANG value set in your wp-config.php file?

    Sorry for not having a solution for it still not sure about it.

    Thanks,
    Nico

Viewing 15 posts - 3,406 through 3,420 (of 6,506 total)