Mike Ruman

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Can’t Uninstall Eventbrite Tickets #1266813
    Mike Ruman
    Participant

    No. Can you let me know what tables I have to manually delete?

    in reply to: Can’t Uninstall Eventbrite Tickets #1265919
    Mike Ruman
    Participant

    Any my host is WPEngine

    in reply to: Can’t Uninstall Eventbrite Tickets #1265915
    Mike Ruman
    Participant

    I deleted the files via FTP but couldn’t find the correct tables in the database. If you have those I’d love some help figuring that part of it out.

    Thanks!
    – Mike

    in reply to: Hide Time on Full Day Events #963334
    Mike Ruman
    Participant
    Mike Ruman
    Participant

    Thanks for the response, Matthew!

    Do I replace that whole snippet of code with this (tried that, didn’t work). Or, where do I put this?

    Thanks!
    – Mike

    Mike Ruman
    Participant

    I appreciate the help.

    I didn’t code this, another developer did. But, here’s his code for this.

    <ul class="events tab" id="events">
    			<header class="events"><h2>Upcoming Events</h2></header>
    
    			<?php
    				$args = array(
    					'post_type' => 'tribe_events',
    					'posts_per_page' => 10,
    					'tax_query' => array(
    						array(
    							'taxonomy' => 'tribe_events_cat',
    							'field' => 'id',
    							'terms' => 13
    						)
    					)
    				);
    			?>
    			<?php $event_archive_query = new WP_Query($args);
    				while ($event_archive_query->have_posts()) : $event_archive_query->the_post(); $event = null; ?>
    					<li>
    						<div class="event">
    							<?php
    								if ( is_null( $event ) ) {
    									global $post;
    									$event = $post;
    								}
    								if ( is_numeric( $event ) ) {
    									$event = get_post($event);
    								}
    								echo '<div class="date-meta"><span class="date-month">';
    								echo tribe_get_end_date($event, false, 'M');
    								echo '</span><span class="date-day">';
    								echo tribe_get_end_date($event, false, 'd');
    								echo '</span></div>';
    							?>
    							<div class="event-details">
    								<a href="<?php the_permalink(); ?>"><p><?php the_title(); ?></p></a>
    								<p class="time"><?php echo tribe_get_start_date($event, false, 'h:i A'); ?> <span class="pipe">|</span> <?php echo tribe_get_venue() ?></p>
    								<a class="details-button" href="<?php the_permalink(); ?>">Details</a>
    							</div>
    
    						</div>
    					</li>
    				<?php endwhile; ?>
    				<div class="pull-right" style="margin-right: 15px; margin-top: 15px; clear: both;"><a href="<?php bloginfo('url') ?>/events" class="button">View Full Events Calendar</a></div>
    		</ul><!-- .events -->
Viewing 6 posts - 1 through 6 (of 6 total)