Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #190439
    Anonymous

    Does anyone use either of these plugins on their site and do they work flawlessly? Also, to Kriesi support staff, have either of these plugins been tested by you guys with Enfold?

    Thanks.

    #190500
    #190510

    Hey!

    No we didn’t test these plugins. I worked with Tribes Events Calendar in the past and I can also recommend this plugin especially because the tri.be devs cooperate with us and we can talk to them if we find a theme/plugin conflict.

    Best regards,
    Peter

    #190707
    Anonymous

    Thanks for the replies. Peter, I am currently using Tribes Events Calendar but am also having a small problem with it. Devin gave me a link to his full-width template because of the inability to use the Avia options to control what shows up on the events page.

    The problem that I am having is that on my events page (http://www.fieldbc.ca/events/) it is displaying the h1 title of the most recently created event instead of the static name of the events page which should be ‘Events’. Can you please advise how I would modify the full width template to show the h1 title ‘Events’ for this page (http://www.fieldbc.ca/events/).

    Thanks!

    #190892

    Surely that indicates some kind of glitch in the avia_title() function?

    #190962

    Hey!

    You can use the code I uploaded here: https://gist.github.com/InoPlugs/5442030 to change the title. Insert it at the very bottom of functions.php and instead of “Events List”, etc. insert your custom page title.

    Cheers!
    Peter

    #191140
    Anonymous

    Peter, you are the man! The code works as expected. There is a couple more things that I can’t figure out how to change and I am sure you can help.

    1. How do I remove the link element from the <h1 class=”main-title entry-title”></h1> on all pages? It seems redundant to have the page title link to itself.

    2. In the breadcrumb section for my main ‘Events‘ page it just says ‘You are here: Home’ instead of ‘You are here: Home / Events’ and, similarly, for a single event page it says ‘You are here: Home / Friends of Yoho Pasta Dinner’ instead of ‘You are here: Home / Events / Friends of Yoho Pasta Dinner’. How do I make it so that the code that creates the breadcrumb path recognizes the events calendar plugin’s content type path?

    Thanks.

    #191362

    Hi!

    1) Insert following code at the bottom of funtions.php to remove the link

    
    add_filter('avf_title_args', 'avia_remove_title_link', 10, 2);
    function avia_remove_title_link($args,$id)
    {
        $args['link'] = false;
        return $args;
    }
    

    2) Use the code I posted here: https://gist.github.com/InoPlugs/7577333 but replace 2563 with your page id. I know it’s weird that the events page doesn’t show up like a normal page but here: http://tri.be/support/forums/topic/how-to-find-the-events-page-id-or-name/ you’ll get the answer.

    Cheers!
    Peter

    #191584
    Anonymous

    Hey Peter, where or how do I find the Page ID for my events page?

    #191772

    Hi!

    At least on my test server it’s listed in the page section (Pages > View All) and you can see the id in the url bar of the admin page: http://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/

    Best regards,
    Peter

    #192024
    Anonymous

    Good Morning Peter,

    I finally found the Post ID by going into the database and looking under wp_posts table. My ‘Events’ page is not listed under the WordPress pages section since it seems that the tri.be Events Calendar does not create a traditional WordPress page for it’s main events page. Anyways, just thought I’d add that in case someone else, looking for the same solution, comes across this thread. The breadcrumb is now displaying properly for events with the code you posted here: https://gist.github.com/InoPlugs/7577333.

    One more quick tweak I will need though. On the main events page (http://www.fieldbc.ca/events) the breadcrumb displays properly (You are here: Home / Events) but for some reason, after the breadcrumb /, ‘Events’ is being wrapped in a link tag that is linking to a page that does not exist (http://www.fieldbc.ca/2013/11/16/events/) and it returns a 404 page not found error. Any ideas?

    #192063

    In case anyone is wondering about Calendarizeit, I just want to mention that it works pretty well with enfold. There’s a slight issue with the event list template, and the aesthetics aren’t as nice as in the Events Calendar, but as a user of both plugins I have to say that when it comes to creating complex reoccurring events (even with arbitrary dates) Calendarize it is hands down the winner. Their support it pretty great too.

    #192452

    Hey!

    @stoffey99 – I think this issue is related to the fact that the events page is not a “standard page”. It seems like the get_permalink function returns the wrong url. You can try to contact the plugin developers – maybe they can help you to add the right page url to the breadcrumb. Personally I don’t know if it’s possible ot not. If not remove the code I posted here: https://gist.github.com/InoPlugs/7577333 and the breadcrumb will not show the events page link.

    Regards,
    Peter

    #192458

    Hi!

    Btw – if you don’t need a link to the events page you can use following code

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            if(get_query_var('post_type') == 'tribe_events')
            {
                $newtrail = array('<a href="#">Events</a>');
                array_unshift($newtrail, $trail[0]);
                if(is_single()) $newtrail['trail_end'] = $trail['trail_end'];
                $trail = $newtrail;
            }
    
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    It just adds the hardcoded text “Events” to the breadcrumb.

    Cheers!
    Peter

    #192590
    Anonymous

    Thanks Peter. Having no breadcrumb links for events will work. Once again, you are the man.

    Sincerely,

    Chris

    #192593
    Anonymous

    I almost forgot. Is it possible to remove the Next / Previous buttons from single events? They are showing up but do not work properly as they are cycling through based on the date I created the event (like a regular Post) instead of the actual date of the event.

    #192696

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .single-tribe_events .avia-post-nav { display: none; }

    Cheers!
    Yigit

    #252269

    Hello,

    I’m using the Enfold theme and I downloaded the Calendarize.it plugin. I can’t see events in the calendar… What I am doing wrong?

    Michal

    #252428

    Hi Michael!

    Thank you for using the theme!

    Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. If you really want to use the plugin, please contact the plugin author or ask support on their forums. Thanks for understanding.

    Best regards,
    Ismael

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Compatibility of WPMUDev's Events+ plugin or Calendarize It!’ is closed to new replies.