Duplicate text on event page

Home Forums Calendar Products Events Calendar PRO Duplicate text on event page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1053222
    tomb1800
    Participant

    Hi there,
    I’m facing odd issiues with the event pages.
    As you can see here : https://vagabondwines.co.uk/event/australia-day-discover-oz-2-0/ the text duplicates itself below the date.
    In addition, the date font is huge : what is the best way to decrease it ?
    Regards

    #1053239
    Hunter
    Moderator

    Hello, and welcome back to the forums!

    I do indeed see the issue you described. It appears the problem could be coming from a template issue or theme/plugin conflict, which are unfortunately outside the scope of support we are able to provide. However, I would be happy to point you in the right direction.

    Have you tried running through our Testing for conflicts article in our Knowledgebase? Another place I’d recommend reading through is our Themer’s Guide, particularly the first section, Customizing Template Files.

    In regards to the size of the date/time font, try adding the code below to your CSS file.

    .tribe-events-schedule h2 {
        font-style: normal;
        font-weight: 700;
        font-size: insert_font_size_here;
    }
    

    Let me know if either link provided helps address the issue you’re experiencing and thanks for being a wonderful customer!

    #1053571
    tomb1800
    Participant

    Hi !
    Thank you for your reply.
    I’m still somehow struggling ! Apparently it is not a plugin conflict issue.
    As I’m catching a former developper’s actions, I try to get my way through all this !

    First of all, I found a file in my theme’s directory, this page’s name is events-page.php
    question : is it a page generated by the events calendar ?
    Here is the code :

    <?php
    /*
    Template Name: Events Page
    */
    
    get_header(); ?>
    
    	<div class="fix-width">
    		<div class="main-holder">
    			<div id="content">
    				<div class="content-holder">
    					<div class="content-frame">
    						<h2><?php wp_title(''); ?></h2>
    								<?php the_content(); ?>
    						<?php while ( have_posts() ) : the_post(); ?>
    						
    							<?php get_template_part( 'content', 'page' ); ?>
    							
    						<?php endwhile; // end of the loop. ?>
    						<div class="content-bottom-link">
    								<a href="#">Back to top</a>
    							</div>
    					</div>
    				</div>
    				
    			</div><!-- #content -->
    			<?php get_sidebar(); ?>
    		</div>
    		<section class="bottom-links">
    			<ul>
    				<?php dynamic_sidebar( 'Bottom Links' ); ?>
    			</ul>
    		</section>
    	</div> <!-- .fix-width -->
    	
    <?php get_footer(); ?>

    Obviously ?php the_content(); ? & ?php get_template_part( ‘content’, ‘page’ ); ? are the origin of the duplicate. I temporarily deleted the first one Is it the proper procedure ?

    On the date’s font size, I’m also struggling : I tried your css code, nothing changed, I tried to amend the single-event.php file that I added in wp-content/themes/vagabond/tribe-events/ nothing changed !

    Can you help on these issues ?

    Best regards

    #1054193
    Hunter
    Moderator

    Hello again 🙂

    The events-page.php file is not generated by The Events Calendar. Our single event template file name is single-event.php. As previously stated, I think your best bet would be to read through our Themer’s Guide, particularly the first section, Customizing Template Files. It seems you’re experiencing a theme conflict, so the template overrides should solve your problem.

    As for the styling, locate your style.css file in your active theme folder and add your styling changes there.

    I wish I could be of more help, but unfortunately theme conflicts are out of the scope of support we’re able to provide in our support forums. Have a wonderful rest of the week and thanks for choosing PRO!

    #1054648
    tomb1800
    Participant

    Ok, the issue seems to be the theme’s coding !
    Regards

    #1054669
    Hunter
    Moderator

    Hello again,

    Thanks for letting me know the final verdict! I’ll go ahead and close this thread out, but please feel free to open a new thread if you have any questions related to The Events Calendar 🙂

    Have a great week!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Duplicate text on event page’ is closed to new replies.