Calendar does not appear
Hi Nikola,
I add the code [[ea_standard]] to my page and the form appears WITHOUT the calendar. It allows me to select location, service and worker but still does display calendar.
If I add code [[ea_standard]] then nothing appears.
Please help as I wish to use your great tool for a client
Hi Charlie, there is an error that is blocking EA from working. This code:
jQuery('.ticker').bxSlider({ infiniteLoop: false, auto: true, pager: false, nextText: '', prevText: '', speed: 2000, pause: 4000 });
can you comment out that part and after that it should work. Both bootstrap and standard version.
Best regards,
Nikola
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.ticker').bxSlider({
infiniteLoop: false,
auto: true,
pager: false,
nextText: '',
prevText: '',
speed: 2000,
pause: 4000
});
jQuery("li.current-menu-item > a").css("font-weight", "bold");
});
</script>
wp_head()
and wp_footer()
inside main template HTML file (should be index but it depends on there organization).
Best regards,
NikolaHere is code from index.php (main template HTML file):
<?php
/**
* Main template file.
*/ get_header(); ?> <div class="slideshow">
<center>
<ul class="ticker">
<li>
<img src="<?php bloginfo( 'template_directory' ); ?>/images/a.jpg" width="900" height="250"/>
</li>
</ul>
</center> </div>
<?php get_sidebar(); ?> <div class="content">
<div class="cn_window">
<div class="cn_news">
<div class="cn_header">
<h2>Latest News</h2>
</div>
<?php
get_template_part( 'loop', 'news' );
?>
</div>
</div>
<div class="cn_windnone">
<div class="cn_windnone_left">
<div class="cn_windnone_header">
<h2>Embassy Announcement</h2>
</div>
<div class="cn_windnone_content">
<?php
get_template_part( 'loop', 'announcement' );
?>
</div>
</div>
<div class="cn_windnone_right">
<div class="cn_windnone_header">
<h2>Community & Cultural Zone</h2>
</div>
<div class="cn_windnone_content">
<?php
get_template_part( 'loop', 'bulletin' );
?>
</div>
</div>
</div>
</div><!-- #content --> <?php get_footer(); ?>
For some reason it is not appending JS files in HTML. Can you please tell me is that template active on that url that you shared? You can try adding something just to see if that is visible after that.
Best regards,
Nikola
Hi Charlie I will send you more details how to solve your issue later this day. 🙂
Best regards,
Nikola
http://www.philembassymadrid.com/wordpress/wp-content/plugins/easy-appointments/js/libs/moment.min.js http://www.philembassymadrid.com/wordpress/wp-includes/js/underscore.min.js?ver=1.8.3 http://www.philembassymadrid.com/wordpress/wp-content/plugins/easy-appointments/js/libs/jquery.validate.min.js http://www.philembassymadrid.com/wordpress/wp-content/plugins/easy-appointments/js/frontend-bootstrap.jsadd those to your page as script html elements. Best regards, Nikola
Please login or Register to submit your answer