Brian

Forum Replies Created

Viewing 15 posts - 10,936 through 10,950 (of 11,256 total)
  • Author
    Posts
  • in reply to: Hide an event in calendar view, but show it on the venue page. #735672
    Brian
    Member

    Ok, just to clarify the other option that does not involve any coding and already apart of the plugin.

    You can link directly to a calendar of one category.

    For example here is your art Calendar:

    http://www.whatson.is/ec/category/art/month/

    Here is your Comedy Calendar

    http://www.whatson.is/ec/category/comedy/month/

    Using this you could create a Category called “Museum Exhibitions” and then link directly to that as your main Event Page.

    The link would look something like this:

    http://www.whatson.is/ec/category/museum-exhibitions/month/

    That could at least get you what you would like the Calendar to look like today without doing any coding.

    Let me know if you would like any more help.

    Thanks.

    in reply to: All day event is showing cut off time in list view (12:00am) #735656
    Brian
    Member

    Hello funinjerusalem,

    I took a look at your site and see the 12:00am showing on the All Day Events.

    Can you please tell me what you have for the inputs for the date formatting in the settings page.

    Go to Events->Settings->Display Tab

    Then scroll to the ‘Date Format Settings’

    Please let me know what you have for the following inputs:

    Date with year
    Date without year
    Month and year format

    Please note if you have time related formats such as ‘g:i’ it will show 12:00am on the All Day View or at least that is how I was able to reproduce what you are getting.

    Let me know what you find out from there and we can take the next step to resolve this.

    Thanks

    in reply to: Event description displaying twice #735641
    Brian
    Member

    Hello jheske,

    Sorry for the troubles you are having with the theme integration.

    I can certainty help get you pointed in the right direction and provide some coding to fix some of the issues.

    I know you said content is privately published, but can you make it public and share a link for your calendar with me and I can see what is going on?

    That is going to be the best way I can see what is happening, otherwise I would just be guessing.

    I did look at the events page using the website you have listed with us and see that the theme is displaying on the excerpt of the content and not the full content. There maybe a setting in your theme for the archives that you can change to show all the content and not an excerpt to fix.

    Let me know if you have a link or we can work something else out to see the content and get this resolved.

    Thanks

    in reply to: How to modify product template for "tickets" #735602
    Brian
    Member

    Hi Mike,

    I can help you out with your customizations and get you going to the next step.

    Unfortunately, we do not have a ‘cheat sheet’ to give you.

    I can tell you the process that creates the tickets is the ‘save_ticket’ function in wootickets/classes/class-wootickets.php on line 320 (in 3.7)

    That shows what fields we create, you could then hook into the ‘save_post’ hook and make changes to the meta fields or add your own defaults.

    Does that work?

    As for closing the tickets, we close topics as our system does not always pick up when new posts are made to older topics and we do not want to miss anyone’s post. Also, we encourage everyone to keep posts to single topics and leaving them open may lead to many different questions being asked that although related are separate questions that we can better handle in individual topics.

    in reply to: Hide an event in calendar view, but show it on the venue page. #735553
    Brian
    Member

    Hello,

    Sorry Option 1 did not work out…

    Option 2 is more difficult as it takes more knowledge of wp_query, filters, and php to get it to work. I can give you some help on it, but for the most part you are on your own making that customization.

    I do have two other ideas (well Geoff had the ideas) that can help that do not involve any coding:

    • Link to a specific category. Each event category has a unique URL (e.g. [your-site]/events/category/category-name/month) and you can send visitors directly to the month view for a specific category.
    • Use the Filter Bar plugin. This plugin will still show all events in the same calendar by default, but allows the visitor to easily filter the calendar to show events from a specific category.

    Let me know if either of those help our you would like additional help on a customization.

    Thanks

    in reply to: Tickets missing on shop page #735506
    Brian
    Member

    I am glad to see you were able to find the solution.

    Since the issue is resolved I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

    in reply to: Location Search #735461
    Brian
    Member

    Thanks for the update, let me know as soon as you have something.

    in reply to: Single event meta #735457
    Brian
    Member

    Siim,

    Glad to see you get it working and I can answer your question about the changes.

    Yes the Events Calendar Pro will still update and if you made the changes in the plugin itself it will overwrite them.

    If you follow the Themer’s Guide and move only the modify files to your theme when the plugin updates those changes will not be overwritten.

    https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/

    Does that help?

    in reply to: Hide checkboxes in dropdown #735446
    Brian
    Member

    Hello toerismeovl,

    Glad the first coding is working.

    As for the second part. There is no easy to make the hidden check boxes through our plugin.

    However, you could try doing it with jQuery.

    I tested this coding out and got it to work to check the Morning, Afternoon, etc boxes even when hidden.

    jQuery(document).ready(function(){
    jQuery("#tribe_events_filter_item_timeofday ul li:not(:first-child) label input").prop("checked", true);
    });

    That should be enough to get you close to what you would like. You may have to make some more changes on your own.

    Let me know if you get stuck on this.

    Thanks

    in reply to: Calendar kills all HTML in calendar page #735364
    Brian
    Member

    Thank you for the complement about our support.

    I understand the frustration of not having a shortcode as it could make customizations easier. We are planning on adding one in a future release, but there is no concrete timetable for it yet.

    There is a UserVoice Feature Suggest that you could upvote to get it more to our attention if you would like.

    Since this topic is resolved I am going to close this ticket.

    If you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: ticket sale date being reset #735329
    Brian
    Member

    Great, glad it is working.

    I have also created a ticket for our developers and we are working to get a fix to this a future version of WooCommerce Tickets.

    I am going to close this ticket, but if you have any more issues or something new, please create a new ticket and we will help you out.

    Thanks

    Brian
    Member

    Hello sbsiceland,

    I can help answer your question and point you in the right direction.

    I think the simplest way to do this is with css.

    You can give the events a category such as Museum Events and then you could hide them in the list, month, photo and other views.

    To get you started here is coding that hides events in the event art category in the list, month, and week view:

    .tribe-events-month .tribe-events-category-art,
    .tribe-events-week-grid .tribe-events-category-art,
    .tribe-events-list .tribe-events-category-art {
    display:none;
    }

    Option 2
    Another option is to again use categories, but add a filter to remove them from the list, month, photo and other views.

    Let me know if you get stuck and would like help on the next step.

    Thanks

    in reply to: Add one extra day at end of month #733411
    Brian
    Member

    I took a look at the mobile view and if you add this class to the the first day of November:

    ‘tribe-events-has-events’

    The dot then shows, notifying that there are events there.

    However, the script still does not recognize that as has having events as none show under the calendar when clicked, so it would take some digging around to get it all to work on the mobile view.

    I think this is a good idea, to show all events in a month view even if in the days are in the month before and after. If you get a chance can you please recommend it on our UserVoice Page:

    http://tribe.uservoice.com/forums/195723-feature-ideas

    Thanks and let me know if you would like anymore help.

    in reply to: Showcase #733353
    Brian
    Member

    Hello Paolo,

    There is no demo or “showcase” that you can change themes on.

    I would suggest downloading the Free Core Version of The Events Calendar and you can test all the themes you would like with it.

    The Events Calendar

    Let me know if that answers your question.

    Thanks

    in reply to: Hide checkboxes in dropdown #733340
    Brian
    Member

    Hello,

    I can help you out with this customization.

    You have two options.

    Option 1
    You can choose to just turn off the Time Filter in the Settings since you only want people to select one option anyway.

    Go to Events->Settings then to the Filter tab, uncheck Time in the Available Filters and then save.

    Option 2
    You can try adding this css and it should hide all but the All Day Option.

    #tribe_events_filters_wrapper #tribe_events_filter_item_timeofday ul li {
    display:none;
    }

    #tribe_events_filters_wrapper #tribe_events_filter_item_timeofday ul li:first-child {
    display:block;
    }

    Let me know if that works for you or you would like some more help.

    Thanks

Viewing 15 posts - 10,936 through 10,950 (of 11,256 total)