Nico

Forum Replies Created

Viewing 15 posts - 5,251 through 5,265 (of 6,506 total)
  • Author
    Posts
  • in reply to: Custom field type URL not working #1028191
    Nico
    Member

    Hey Michael,

    Thanks for sending the screenshot I get what’s happening now!

    This was a bug in a previous version of the plugin (and a fix was introduced as well), as I see you registered just a couple of days ago I imagine you are running the latest versions of the plugins, but please double check on that. This is the fix I’ve provided in past: https://theeventscalendar.com/support/forums/topic/html-shows-as-text/#dl_post-1003968

    Please let me know if you are running latest version of the plugins and you can reproduce this with default WordPress theme and no other plugins active. In that case this bug might have been re-introduced,
    Best,
    Nico

    in reply to: Add button above attendee table in woocommerce tickets #1028137
    Nico
    Member

    Hi Erico,

    Thanks for reaching out! Interesting question here ๐Ÿ™‚

    Hopefully this is possible by adding a filter to tribe_events_tickets_attendees_table_nav like shown below:


    add_filter( 'tribe_events_tickets_attendees_table_nav', 'attendees_table_add_button', 10, 2 );

    function attendees_table_add_button ( $nav, $which ) {

    $nav['left']['extra'] = sprintf( '%s', esc_url( 'http://tri.be/' ), 'Extra' );

    return $nav;
    }

    Please try the snippet out and let me know if it works for you,
    Best,
    Nico

    in reply to: Venue and #1028132
    Nico
    Member

    Hey Maciej,

    Glad to hear you could solve this ๐Ÿ™‚

    I’m afraid there’s no configuration for just displaying “your” venues and organizers. One way to modify this is to override the template part where the list is loaded, and replace that for your own combo box. The templates for venue and organizer lists are located at ‘wp-content/plugins/the-events-calendar-community-events/src/views/community/modules/’, the process to override templates is described in our Themer’s guide, take a look or share that information with your dev.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

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

    Hey Rick,

    Not yet, but we are actively looking for the origin of this bug. As noted above this is not an easy issue for us to look into. Additional tests for duplicates are being set and also if anyone is willing to set up a test site where this can be reproduced with default TweentyFifteen theme and no other plugins active (but our), we will be happy to take a look to the site and db’s exports.

    I really hope we can hunt this tricky bug soon,
    Best,
    Nico

    in reply to: Getting variable pricing to display #1027749
    Nico
    Member

    No problem Aj, thanks for keeping me posted!

    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: How to show all events on one page ? #1027747
    Nico
    Member

    Hi Adage,

    Thanks for the heads up, and 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

    Hey David,

    Thanks for reaching out on this! Hopefully there’s an article explain how to Move your license keys from the live site to the staging instance. I guess that’s the best way to achieve this, another way would be to download the plugin ZIP and manually update it.

    Please let me know if you still have doubts on this after going through the articles,
    Best,
    Nico

    in reply to: Price of Plugin Add-On #1027740
    Nico
    Member

    Hi Katherine,

    Thanks for reaching out to us, and also for your interest in our products!

    You are right about the pricing of our products, it’s $89 each. Events Calendar PRO doesn’t come with filtering options specifically but it includes a ‘search bar’ to narrow down results, take a look: https://cloudup.com/c6X_pWl669l

    There’s also a third-party plugin called Category Colors which displays event categories under the search bar, before the calendar. I guess if you need advanced filters, Filter Bar is the right choice! Also please note that you can run Filter Bar plugin without having Events Calendar PRO enabled on the site.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: Can you default to the first month with events? #1027726
    Nico
    Member

    Hi Evan,

    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. If you have not purchased one of our premium plugins, you can post in our open source forum. We review that forum weekly.

    Short answer is this is not possible by default, but one of our support team members might be able to point you in the right direction on how you can achieve this customization.

    Best,
    Nico

    in reply to: Multiple months and year viewing of events #1027723
    Nico
    Member

    Hi Percy,

    Thanks for you interest in our products! I’ll help you how this is possible in our calendar.

    Take a look at our demo site: http://wpshindig.com/events/, per default the events are shown in a month grid. At the bottom you’ll see two links to navigate to previous / next months, as long as future events exist.

    Please let me know if this answers your question, and also if I can help you with anything else,
    Best,
    Nico

    in reply to: Custom field type URL not working #1027715
    Nico
    Member

    Hey Michael,

    Glad to help you with this issue as well. Can you please resend me the screenshot? I’m not able to see the image. You can upload it to cloudup.com or any other iamge sharing service and share the link with me.

    Best,
    Nico

    in reply to: Change order addressfields #1027712
    Nico
    Member

    Hi Natalie,

    Thanks for reaching to us! Hopefully I can helo you getting this right ๐Ÿ™‚

    To change how address is displayed in the Single Event Template you’ll need to create a template override of the ‘address.php’ file, located at: ‘wp-content/plugins/the-events-calendar/src/views/modules/address.php’. The process for creating a template override is described in our Themer’s guide but if you need further assistance on it, just let me know.

    Best,
    Nico

    in reply to: Disabling tribe-events-nav-next / tribe-events-nav-previous #1027702
    Nico
    Member

    Hi Michael,

    Thanks for reaching out to us! I’ll help you here…

    The easy way to achieve this is to visually hide it via CSS, adding this snippet to your theme/child theme stylesheet or via Simple Custom CSS plugin:

    .single-tribe_events #tribe-events-footer {
    display:none;
    }

    If you are just willing to hide this for specific events you can target those via post-ID, like this:

    .postid-999 #tribe-events-footer {
    display:none;
    }

    Finally if you need to select which events to hide this from the back-end you can add a custom field (or PRO additional field) and make a check for this value in the Single Event Template (view the Themer’s guide for details on how to edit templates).

    Please let me know if you can implement this fix or still need assistance,
    Best,
    Nico

    Nico
    Member

    Hi Tom,

    Thanks for getting in touch! I’ll try to help you here…

    I assume you are processing the XML and turning that data into a CSV file, right? Regarding the image import, unfortunately that’s not possible right now. This has been suggested in The Events Calendar user voice page: http://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/6834910-import-a-featured-image-via-csv, you are welcome to up-vote it and/or adding a comment on why this feature would be important to you.

    This article goes over the possibilities of the CSV importer: CSV Importer: Fields and Example fields. A work around might be to create an additional field and store the image URL in that field to show it in the Single Event Template (check out our Themer’s guide for details on this), but importing the image and store it in your site is not possible.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: Getting variable pricing to display #1027683
    Nico
    Member

    Hey Aj,

    Thanks for reaching out and sorry about the hassle getting this right! I’ll help you here…

    First of all I’m not sure about the price range you are needing you to display. I mean if you only have one product (ticket type) why are you looking for displaying a cost range? Understanding this might lead me to find a simpler solution. Also can you point me to previous thread you mention?

    I had to create different products in Woocommerce (basically the same except the price) but when it displays in Event Calendar it shows one (random) price, but also has no booking link.

    Not sure what you mean that in Events Calendar it shows only one… Is that in the back-end or the front-end?

    Sorry for the many follow-up questions, I just want to make sure I get this issue right,
    Best,
    Nico

Viewing 15 posts - 5,251 through 5,265 (of 6,506 total)