-
AuthorPosts
-
November 19, 2013 at 3:11 am #190439Anonymous
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.
November 19, 2013 at 10:37 am #190500I use Tribes Events Calendar – and it’s great
Listings page http://natureslens.co.uk/events/
Single Event Page http://natureslens.co.uk/event/british-wildlife-photography/November 19, 2013 at 11:13 am #190510Hey!
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,
PeterNovember 19, 2013 at 7:54 pm #190707AnonymousThanks 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!
November 20, 2013 at 11:40 am #190892Surely that indicates some kind of glitch in the avia_title() function?
November 20, 2013 at 4:36 pm #190962Hey!
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!
PeterNovember 20, 2013 at 9:10 pm #191140AnonymousPeter, 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.
November 21, 2013 at 9:26 am #191362Hi!
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!
PeterNovember 21, 2013 at 7:39 pm #191584AnonymousHey Peter, where or how do I find the Page ID for my events page?
November 22, 2013 at 9:41 am #191772Hi!
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,
PeterNovember 22, 2013 at 7:33 pm #192024AnonymousGood 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?
November 22, 2013 at 9:34 pm #192063In 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.
November 24, 2013 at 11:40 am #192452Hey!
@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,
PeterNovember 24, 2013 at 12:09 pm #192458Hi!
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!
PeterNovember 24, 2013 at 7:32 pm #192590AnonymousThanks Peter. Having no breadcrumb links for events will work. Once again, you are the man.
Sincerely,
Chris
November 24, 2013 at 7:38 pm #192593AnonymousI 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.
November 25, 2013 at 1:42 am #192696Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.single-tribe_events .avia-post-nav { display: none; }
Cheers!
YigitApril 16, 2014 at 6:51 pm #252269Hello,
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
April 17, 2014 at 4:52 am #252428Hi 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 -
AuthorPosts
- The topic ‘Compatibility of WPMUDev's Events+ plugin or Calendarize It!’ is closed to new replies.