Mary Correia-Moreno

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • Mary Correia-Moreno
    Participant

    Hi 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
    Participant

    Hi Josh,

    Just wanted to check in with you again here. Let me know your thoughts.

    thanks!

    Mary Correia-Moreno
    Participant

    Hi 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:1

    Any clue how to rectify this without touching the core files?

    Mary Correia-Moreno
    Participant

    Hi 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/

    in reply to: Pull 4 Events from a Specific Category #1017486
    Mary Correia-Moreno
    Participant

    nevermind! 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>
    in reply to: Pull 4 Events from a Specific Category #1017474
    Mary Correia-Moreno
    Participant

    Hi 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>
    in reply to: Search ALL events not just the events that month? #1017390
    Mary Correia-Moreno
    Participant

    Thanks for the info George, we’ll most likely let it be. but might be a nice feature for future releases! 😉

    Mary Correia-Moreno
    Participant

    Hi,

    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!!

    in reply to: Google map not displaying #1008761
    Mary Correia-Moreno
    Participant

    Hi 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!

    in reply to: Main links removing initial / #1008752
    Mary Correia-Moreno
    Participant

    This was a conflict with the Root Relative URLs plugin. i disabled that and now it is working again.

Viewing 10 posts - 1 through 10 (of 10 total)