• Resolved styrcn

    (@styrcn)


    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, “https://eve-wordpress.wearecodevision.com/” 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 to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

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

    (@styrcn)

    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

    (@yithemes)

    Hi @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.