Title: theme integration
Last modified: September 15, 2017

---

# theme integration

 *  Resolved [styrcn](https://wordpress.org/support/users/styrcn/)
 * (@styrcn)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/theme-integration-31/)
 * I am currently using the theme “Eve-Events Directory WordPress Theme”. my problem
   is that the features of the “List manager” plugin used by the theme when I select
   the product type as “Event Ticket” while adding the product on the “woocommerce”
   screen do not work. If you look at the demo of the theme, “[http://eve-wordpress.wearecodevision.com/&#8221](http://eve-wordpress.wearecodevision.com/&#8221);
   first thing that welcomes you, it is a very nice location based animated directories.
   I think the name is “content-hero.php”. This special .php file that works with
   the “SiteOrigin” plugin. What I would like to do is to be able to show the products
   I marked as event tickets in this section. that is your products. Neither the
   theme authority nor the “listing manager” that I paid for helped the authorities.
   last hope is you. please help or guide me. Thanks in advance.
 *     ```
       <div class="hero hero-creative-wrapper">
       	<div class="hero-creative">
       		<?php $background = get_theme_mod( 'eve_hero_creative_background', null ); ?>
   
       		<?php if ( ! empty( $background ) ) : ?>
       			<div class="hero-creative-image" style="background-image: url('<?php echo esc_attr( $background ); ?>');"></div><!-- /.hero-creative-image -->
       		<?php endif; ?>
   
       		<div class="hero-creative-content">
       			<div class="hero-creative-title">
       				<?php $subtitle = get_theme_mod( 'eve_hero_creative_subtitle', null ); ?>
       				<?php if ( ! empty( $subtitle ) ) : ?>
       					<h1><?php echo esc_html( $subtitle ); ?></h1>
       				<?php endif; ?>
   
       				<?php $title = get_theme_mod( 'eve_hero_creative_title', null ); ?>
       				<?php if ( ! empty( $title ) ) : ?>
       					<h2><?php echo str_replace( '\n', '<br>', esc_attr( $title ) ); ?></h2>
       				<?php endif; ?>			
   
       				<?php $button_link = get_theme_mod( 'eve_hero_creative_button_link', null ); ?>
       				<?php $button_text = get_theme_mod( 'eve_hero_creative_button_text', null ); ?>
       				<?php if ( ! empty( $button_link ) && ! empty( $button_text ) ) : ?>
       					<a href="<?php echo esc_attr( $button_link ); ?>" class="button button-secondary button-lg" style="transition-delay: 1.7s; transition-duration: .6s;">
       						<?php echo esc_html( $button_text )?> <i class="fa fa-chevron-right"></i>
       					</a>
       				<?php endif; ?>
       			</div><!-- /.hero-creative-title -->
   
       			<?php query_posts( [
       				'post_type' 		=> 'product',
       				'posts_per_page' 	=> 9,
       				'tax_query'			=> [
       					[
       						'taxonomy'  => 'product_type',
       						'field'     => 'slug',
       						'terms'     => [ 'event_ticket' ], // i changed here as event_ticket but it did not work
       					],
       				],
       			] ); ?>
   
       			<?php if ( have_posts() ) : ?>
       				<?php 
       				$i = 0;
       				$matrix = [
       					[ 'x' => 50, 'y' => 160, 'delay' => 2.2 ],
       					[ 'x' => 260, 'y' => 60, 'delay' => 2.5 ],
       					[ 'x' => 440, 'y' => 300, 'delay' => 3.3 ],
       					[ 'x' => 620, 'y' => 110, 'delay' => 3 ],
       					[ 'x' => 810, 'y' => 240, 'delay' => 2.8 ],
       					[ 'x' => 1020, 'y' => 130, 'delay' => 3.2 ],
       					[ 'x' => 1240, 'y' => 100, 'delay' => 2.6 ],
       					[ 'x' => 1440, 'y' => 290, 'delay' => 3.1 ],
       					[ 'x' => 1580, 'y' => 80, 'delay' => 2.8 ],
       				];
       				?>	
   
       				<div class="hero-creative-pins">
       					<?php while ( have_posts() ) : the_post(); ?>										
       						<div class="hero-creative-pin" style="transition-delay: <?php echo esc_attr( $matrix[ $i ]['delay'] ); ?>s; bottom: <?php echo esc_attr( $matrix[ $i ]['y'] ); ?>px; left: <?php echo esc_attr( $matrix[ $i ]['x'] ); ?>px;">
       							<span class="hero-creative-pin-place"></span>
       							<div class="hero-creative-pin-title">
       								<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
       								//<h4><?php echo \ListingManager\Product\ListingProduct::get_location_name(); ?></h4>
       							</div>
       						</div><!-- /.hero-creative-pin -->					
   
       						<?php $i++; ?>
       					<?php endwhile; ?>
       				</div><!-- /.hero-creative-pins -->
       			<?php endif; ?>
   
       			<?php \ListingManager\Utilities::reset_query(); ?>
   
       			<div class="hero-scroll">
       				<div class="hero-scroll-mice">
       				</div><!-- /.hero-scroll-mice -->
       				<span><?php echo esc_html__( 'Scroll Down', 'eve' ); ?></span>
       			</div><!-- /.hero-scroll -->	
       		</div><!-- /.hero-creative-content -->					
       	</div><!-- /.hero-creative -->
       </div><!-- /.hero -->
       ```
   
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftheme-integration-31%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * (@yithemes)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/theme-integration-31/#post-9572873)
 * Hi [@styrcn](https://wordpress.org/support/users/styrcn/).
 * Could you please describe better the issue that you have with this theme? Seems
   that you have **Eve-Events** theme and when you choose products to list on the
   main page with **List Manager** you have problems with selecting our Event Tickets
   products, right?
 * Waiting for your reply.
 *  Thread Starter [styrcn](https://wordpress.org/support/users/styrcn/)
 * (@styrcn)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/theme-integration-31/#post-9575122)
 * yes, I guess the theme is not compatible with your plugin. How can we get rid
   of this problem. Your ticket plugin is very successful, but as I said before,
   when I add a product under the name of an event on the system, I need to select
   the event ticket tab on the woocommerce screen so that I can use your plugin,
   and the theme does not work properly. map feature or other features.
 *  Plugin Author [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * (@yithemes)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/theme-integration-31/#post-9577402)
 * Hi [@styrcn](https://wordpress.org/support/users/styrcn/),
 * The events follow the same WooCoomerce simple product structure. We can´t know
   how your theme handles WooCommerce products, for this reason we advise you contact
   the team that developed the theme.
 * Regards.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘theme integration’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/yith-event-tickets-for-woocommerce_d56245.
   svg)
 * [YITH Event Tickets for WooCommerce](https://wordpress.org/plugins/yith-event-tickets-for-woocommerce/)
 * [Support Threads](https://wordpress.org/support/plugin/yith-event-tickets-for-woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/yith-event-tickets-for-woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yith-event-tickets-for-woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yith-event-tickets-for-woocommerce/reviews/)

## Tags

 * [yith plugins](https://wordpress.org/support/topic-tag/yith-plugins/)

 * 3 replies
 * 2 participants
 * Last reply from: [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/theme-integration-31/#post-9577402)
 * Status: resolved