Brian

Forum Replies Created

Viewing 15 posts - 3,571 through 3,585 (of 11,256 total)
  • Author
    Posts
  • in reply to: RSS alternate option #1012463
    Brian
    Member

    Hi,

    Are you trying to get a iCal feed from your site?

    If so the month view has a iCal link at the bottom for that month’s events.

    If you are looking for a custom range I have this snippet to create one:

    https://gist.github.com/jesseeproductions/c31f054709ca7eb9b779

    You could add that to your theme’s functions.php and then use this link to get a iCal file or feed:

    http://yoursite.com/events/?ical=1&full-export

    You will want to change the date here to the range you would like:

    $query->set( 'end_date', '2015-12-31' );

    Does that work?

    in reply to: Eventbrite ticket buy button #1012462
    Brian
    Member

    Hi,

    This is a duplicated of this ticket:

    Eventbrite tickets buy button not displaying

    So we will help you there and close this one.

    Thanks

    Brian
    Member

    Hi,

    I visited your site again and now I see it working correctly.

    Were you able to fix it?

    Brian
    Member

    Hi William,

    Thanks for posting here. I can certainly help you here, but we can help you better if you create your own topic in the forum, where we can interact with you one on one. Also, we encourage you to post on your own topic because every time we post it will email the author of the topic.

    Having said that this snippet might work for both of you:

    https://gist.github.com/jesseeproductions/a467b28a8b8010d4015b

    Add that coding to your theme’s functions.php and then replace the slug ‘tech’ with the slug of the event category you are trying to remove from the Month and List Views.

    Thanks

    Brian
    Member

    Hi,

    It looks like some of the scripts on the site uses $() and some start with jQuery(). WordPress supports the later, so the script I gave is breaking the $() scripts.

    This script might help load a version of jQuery that prevents this. Remove the first script I gave and then try this in its place:

    // Remove themes old version of jQuery and load a compatible version
    if ( ! is_admin() ) {
    add_action( "wp_enqueue_scripts", "tribe_jquery_enqueue", 11 );
    }
    function tribe_jquery_enqueue() {
    wp_deregister_script( 'jquery' );
    wp_register_script( 'jquery', "http" . ( $_SERVER['SERVER_PORT'] == 443 ? "s" : "" ) . "://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js", false, null );
    wp_enqueue_script( 'jquery' );
    }

    Let me know how that works out.

    Thanks

    in reply to: Replace content on main Events page #1012259
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    To edit any of the event templates we have our themer’s guide:

    https://theeventscalendar.com/knowledgebase/themers-guide/

    To show you how to move and edit a template in your theme.

    Following that guide you could go to the month template and remove the next call for the template to now show it. However, if you are just going to overwrite the template I would use a template such as the list or photo view instead.

    There is also this list of conditionals I have that might help out too:

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

    Let me know if you have any follow up questions.

    Thanks

    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    I think I can help you add a conditional to fix this.

    If you add this in your conditional check:

    && !is_tax()

    It should prevent the snippet from running on the category views.

    If you are unsure where to put it, please post a link to the snippet or copy it into a reply.

    Let me know what you find out.

    Thanks

    in reply to: Filter not working on mobile #1012236
    Brian
    Member

    Hi,

    Sorry for the issues you are having. I can help out here.

    I see you are using a Child Theme for Genesis and there is a strange issue that happens in Genesis that causes this.

    Follow the steps outlined in this guide to fix it:

    Genesis Framework & Event Submissions

    See if adding that resolves the issue.

    Also, on that page are other Genesis specific coding that might help to.

    I created them all so let me know if you have any questions.

    Thanks

    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    I visited your site and see what you mean.

    It looks like something in the List View is causing an error that prevents the footer from loading, which maybe causing this.

    Do you have any custom templates in your theme for the events calendar list view?

    They would be found here:

    yourtheme/tribe-events/list/

    Let me know and we can go from here.

    Thanks

    in reply to: strtotime error #1012219
    Brian
    Member

    Hi,

    Thanks for the information and I do not think the error log will be helpful if the errors are all the same as reported. I think you could empty the log for now so we only see new warnings and errors.

    Yep that is where the warnings are occurring, but I am not able to replicate or seen other reports. So it is unclear why it is happening and since it is in the middle of the coding the only fix would be to edit the plugin. Before that happens I would like to know why.

    I looked at it again and the function running is the save pending events, which could be running from a cron to update existing recurring events as it is around the same time everyday.

    Do you have any long running recurring events? It maybe updating those on the cron and since they were created before 3.12 they might be missing information, which causes these warnings.

    Let me know.

    Thanks

    in reply to: Events Calendar not working #1012208
    Brian
    Member

    Hi,

    Thanks for providing the theme.

    I loaded the theme and it reproduced the issue you had right away.

    It was a little tricky to get working, but I Found if I set these two settings to this it worked for me:

    X Theme Setting:
    Appearance > Customize > Blog > “Full Post Content on Index” Set to > On

    The Events Calendar Settings:
    Events > Settings > Display Tab > “Events template” Set to > Default Events Template

    If you change those two settings does that resolve the issue?

    in reply to: RSVP or signup to events #1012192
    Brian
    Member

    You’re Welcome.

    I am going to close this ticket, but 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: Wrong naming for exported .po/.mo-files #1012190
    Brian
    Member

    When we release a new version of the plugin the file names will be correct or we will fix that.

    If someone manually downloads it for now they are going to have to change the filename.

    To many things are up in the air about the translation system on .org for us to want to make changes right now.

    Again this is something for us to consider if we want to stick with this system or take it back over when we reevaluate it.

    Thanks

    Brian
    Member

    Hi,

    Thanks for doing the testing.

    I took a look at your source coding again and see your theme is loading an old version of jQuery:

    http://www.ralsc.org/wp-content/themes/CherryFramework/js/jquery-1.7.2.min.js

    WordPress ships with jQuery 1.11.3 and that is the version we support.

    So that looks to be the issue since the widgets testing did not find a problem there.

    The best way to resolve this is to update your theme or the Cherry FrameWork in your theme to the latest version, but I am not sure how possible that is if the theme was customized.

    Another option is try this coding in your theme’s functions.php:

    // Remove themes old version of jQuery and load a compatible version
    if ( ! is_admin() ) {
    add_action( "wp_enqueue_scripts", "my_jquery_enqueue", 11 );
    }
    function my_jquery_enqueue() {
    if ( ! $guessurl = site_url() )
    $guessurl = wp_guess_url();

    wp_deregister_script( 'jquery' );
    wp_register_script( 'jquery', $guessurl . '/wp-includes/js/jquery/jquery.js', array(), '1.11.3' );
    wp_enqueue_script( 'jquery' );

    }

    This worked for me to load the latest version of jQuery shipped with WordPress. It could work for you, but I would backup your site before adding it and it is unclear how the other scripts on your site will react and if it might create new problems so I would be prepared to test for other issues.

    That is about all I have for fixing a theme loading an old version of jQuery and I am limited in fixing 3rd party coding beyond this. So if you would like a refund please follow our policy outlined here:

    Refund Policy

    And we can take care of it. Thanks

    in reply to: Genesis + TEC Plugin #1012026
    Brian
    Member

    Hi Cliff,

    Thanks again for this it is something we are interested in, but we would like to talk with Reid on how to proceed. He is out for the next week though.

    So we will bring it up with him once he gets back and them reply here or to you personally on the next steps we like to take.

    For now I will close this thread to new replies.

    Thanks Again

Viewing 15 posts - 3,571 through 3,585 (of 11,256 total)