Brian

Forum Replies Created

Viewing 15 posts - 10,246 through 10,260 (of 11,256 total)
  • Author
    Posts
  • in reply to: licensing #826911
    Brian
    Member

    Yep for one Website a Personal License is what you need. It does not matter that your site is business related, it is just our name for a single license.

    Does that help?

    Brian
    Member

    Hello,

    Thanks for using the Events Calendar Pro. That is an interesting way to setup the widget, out of the box it does not have that feature.

    Unfortunately, there is not much help we can do on a customization such as this as it is beyond the support we can provide on the forum.

    You can start with our Themer’s Guide

    And by moving this file to your theme for editing:

    \events-calendar-pro\views\pro\widgets\mini-calendar-widget.php

    We can try to answer any questions you have, but for the most part this customization is up to you.

    Let me know, thanks

    in reply to: Lithuanian Translation #826884
    Brian
    Member

    Hello Gediminas,

    Thanks for providing the translation! We appreciate it.

    in reply to: Is there an ARCHIVE WIDGET? #826856
    Brian
    Member

    Hi Lorenzo,

    Thanks for using our Plugins.

    I am afraid we do not have a Archive Widget, with the widget you go back and see previous events, but it does not start that way. You maybe to build one, but that would take some customization that is beyond the support we can provide on the forum.

    If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.

    http://tribe.uservoice.com/

    Let me know if you have any follow up questions.

    Thanks

    in reply to: FB Auto import partially working #826837
    Brian
    Member

    Thanks for the information.

    I am running tests on my site and could not get the events for “Events from American English Beatles Tribute:” to Automatic Import. It was the same for about the lower third of events for Beatlemania.

    I tried on the first event from “Events from American English Beatles Tribute:” a manual import by checking the box and it gave me an error about the Facebook Image. I am checking to see if that is the cause of the Automatic Imports from working or there is another issue. I will let you know when I have some more information for you.

    Thanks

    Brian
    Member

    Hi thanks for using our plugins.

    It is indeed possible to hide those there are many different ways.

    The easiest way is to follow our Themer’s Guide and move this file to your theme to edit:

    \the-events-calendar-community-events\views\community\modules\venue.php

    There you can comment out the fields you do not want to use or delete them entirely.

    That will hide the fields, but it may prevent the map from working on these venue pages and related events if you are ok with that.

    Let me know if that works.

    Thanks

    in reply to: Editing the Events page #826811
    Brian
    Member

    So I think you are on the right track.

    I added some notes below to your comments.

    If the events page had its own physical page it would be a piece of cake but unfortunately is doesn’t.

    Yes, cake would be good. 🙂 I also have a little trouble integrating with Genesis on building my own sites I usually go and directly edit the templates to get it how I want it to work.

    As you say:

    So from what you’re saying I guess I need to add something along the lines of:

    if( tribe_is_month() ) {
    set the page featured image to xxxc.jpg
    }

    Something like that would be the way I would do it. You would have to add && !tribe_is_month() to this conditional tribe_is_event() for your first if statement.

    You may have to add a conditional on this as well and directly set the url to a default image instead of using genesis_get_image. (Just gave a presentation on using the Genesis Framework and did not even know that was a function, learn something new every day!)

    wp_localize_script( ‘sk-backstretch-set’, ‘BackStretchImg’, array( ‘src’ => str_replace( ‘http:’, ”, genesis_get_image( array(‘format’ => ‘url’) ) ) ) );

    Let me know if you can get that working or have any more questions and I can try to answer them.

    Thanks

    in reply to: Date and Time not showing on Event page #826793
    Brian
    Member

    Hello,

    Sorry for the issues you are having with the Date and Time not showing. It is a css conflict that hides those fields.

    I do have a fix that should work for you.

    Add this to your theme’s stylesheet or through a plugin such as Simple Custom CSS:

    .tribe-events-abbr.updated {display: block;}

    That should make it show on the Single Event View as well as the Month View Tool Tip.

    Let me know if that works for you.

    Thanks

    in reply to: Change Single Event Page Title #826782
    Brian
    Member

    No Worries.

    Closing out this ticket, but if you have any other issues related to this or something new, please create a new one.

    Thanks

    in reply to: Event URL #825348
    Brian
    Member

    Hi jstack,

    Thanks for using out plugins.

    The only thing that I can think of that affects urls is the WordPress autosave. Sometimes if that saves without there being a title it changes the url to all numbers for the id.

    We do not have anything that would change the url to remove the title in the admin, it could be some javascript doing it as well, but it is hard to say where that would be coming from.

    Does it do it often or was it only for one event?

    Does that help?

    in reply to: Shortcode to showup only on events page #825341
    Brian
    Member

    Sure I can help you out.

    The main view is in this file:

    \the-events-calendar\views\default-template.php

    Follow our themer’s guide to move it to your theme and edit it there:

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

    Then use the conditionals from this page to only target the views you want the slider to appear.

    https://gist.github.com/jo-snips/2415009

    You may also need to use WordPress’s do_shortcode function for your shortcode to work.

    http://codex.wordpress.org/Function_Reference/do_shortcode

    Let me know if that works for you.

    Thanks

    Brian
    Member

    This works for us.

    Glad you were able to figure it out.

    I ran into another customer who had coding that was flushing permalinks on every load as well.

    Is there anything else we can help you with on this issue? Let me know otherwise I will close the ticket in a couple days.

    Thanks

    in reply to: FB Auto import partially working #825081
    Brian
    Member

    Glad that fixes some of the issues. Let us see about the other one.

    What are you settings for the Automatic Imports on this Tab:

    Events > Settings >Facebook Tab

    Also can you provide me with two of the Facebook Page Usernames in a private reply and I will test out and see if I can get them to work.

    And on this page

    Events > Import: Facebook

    Are the events list under the Pages and the ones not importing are not checked correct?

    Let me know and we can go from there.

    Thanks

    in reply to: Upcoming Events There are no upcoming events at this time. #825063
    Brian
    Member

    AS Rob said I do have a snippet to get you started, but you are going to take it from here to get it exactly how you would like.

    https://gist.github.com/jesseeproductions/344dcb2d0a3b5600240f

    The coding will get the events in the month specified, in this case November.

    You will have to add your own coding to get the number for the next month.

    Also you will have to modify this date(‘Y’) function. As you will want to get the next year when you are in December and not the current year.

    A good resource for figuring this out is the PHP Date function found here:

    http://php.net/manual/en/function.date.php

    I have tried the snippet on my own site it was working when I manually changed the $month_num variable.

    Let me know if you have any questions on how this works and I can answer them.

    Thanks

    in reply to: Events not reordering in chronological order issue #825059
    Brian
    Member

    Unfortunately, there is not much more support we can provide with this. We try to make our plugin as compatible as possible with other plugins, but if there are issues we can try to help out, however for the most part we are not able to go in and change either plugin to make them compatible.

    I think the best way to find a solution is through the Post Types Order Plugin as that is modifying the Event Queries. The developer should have a way to prevent the plugin from running on this post types:

    tribe_events
    tribe_organizer
    tribe_venue

    That should clear up the issue.

    You could also try using conditionals on this page to prevent the plugin from running on Event Pages.

    https://gist.github.com/jo-snips/2415009

    One to look at might be tribe_is_event()

    That is about all the help we can give, but if you have any questions let us know.

    Thanks

Viewing 15 posts - 10,246 through 10,260 (of 11,256 total)