Forum Replies Created
-
AuthorPosts
-
Mary Correia-Moreno
ParticipantHi Josh,
i’m now pulling in a newer version of jQuery and put it in the head of my site rather than the footer. This seems to have fixed my problem.
thanks for your help!
Mary Correia-Moreno
ParticipantHi Josh,
Just wanted to check in with you again here. Let me know your thoughts.
thanks!
Mary Correia-Moreno
ParticipantHi Josh,
I’ve ran through the above steps and to me it looks like a JS error in a core file of the plugin itself. When I use the inspector while clicking on the Previous or Next links in “List view” only it fires the following error:
Uncaught TypeError: a(…).tribe_spin is not a function
tribe-events-ajax-list.min.js?ver=4.1.4:1Any clue how to rectify this without touching the core files?
Mary Correia-Moreno
ParticipantHi Josh,
I deleted my custom template override and just used the default files from The Events Calendar [Version 4.1.4] but that didn’t work either. I’ve temporarily disabled my template override so you can see the default isn’t working as well here: http://sdchamber.org/events/list/
Mary Correia-Moreno
Participantnevermind! figured out a work around, just using tags instead:
<ul> <?php $args = array( 'post_type' => 'tribe_events', 'posts_per_page' => 4, 'tag' => 'chamber' ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); ?> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </li> <?php endwhile; ?> </ul>Mary Correia-Moreno
ParticipantHi George
I know you can’t provide coding assistance but the above isn’t working … :/ is there anyway to instead show ALL posts but exclude a specific category “community” ??
any help is greatly greatly appreciated!!! i’m completely stumped over here – again this is what i started with:
<ul> <?php $args = array( 'post_type' => 'tribe_events', 'posts_per_page' => 4 ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); ?> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </li> <?php endwhile; ?> </ul>October 23, 2015 at 11:09 am in reply to: Search ALL events not just the events that month? #1017390Mary Correia-Moreno
ParticipantThanks for the info George, we’ll most likely let it be. but might be a nice feature for future releases! 😉
October 7, 2015 at 11:52 am in reply to: Hide Category from Main Calendar, but not Category Calendar #1012424Mary Correia-Moreno
ParticipantHi,
I’m in need of this same fix. We have 6 different event categories [Networking, Policy, International, Professional Development, Signature, and Community]. On the Main Calendar I need to hide the community events from being displayed from the main calendar view and the main list view.
Underneath the main calendar I have a section called community events which displays the latest three community events using this which works great:
<ul class="list-community-events"> <?php $args = array( 'post_type' => 'tribe_events', 'posts_per_page' => 3, 'tag_ID' => '19' ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); ?> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </li> <?php endwhile; ?> </ul>After that i have a link to separate page that displays just the community events:
/events/category/community/list/I want all of this to continue to work exactly as i have setup but just NEED the community to not display on the default main calendar month and list view.
any help is GREATLY appreciated!! thanks!!
-
This reply was modified 10 years, 6 months ago by
Mary Correia-Moreno.
Mary Correia-Moreno
ParticipantHi Mitch,
I had the same problem [my maps weren’t showing up at all]. If you have the plugin Root Relative URLS installed; try disabling that and reloading your page. Once I turned that plugin off my maps worked once again
hope that helps!
Mary Correia-Moreno
ParticipantThis was a conflict with the Root Relative URLs plugin. i disabled that and now it is working again.
-
This reply was modified 10 years, 6 months ago by
-
AuthorPosts
