Quote Originally Posted by DivaVocals View Post
I found two more files that need this same fix:
includes/templates/westminster_new/common/tpl_home_slider.php
Line #41 :
Code:
<script src="<?php echo  $template->get_template_dir('',DIR_WS_TEMPLATE,  $current_page_base,'jscript') . '/jquery.flexslider.js' ?>"  type="text/javascript"></script>
Should be:
Code:
<script src="<?php echo   $template->get_template_dir('jquery.flexslider.js',DIR_WS_TEMPLATE,   $current_page_base,'jscript') . '/jquery.flexslider.js' ?>"   type="text/javascript"></script>


includes/templates/westminster_new/common/tpl_main_page.php
Line #93 :
Code:
<script src="<?php echo  $template->get_template_dir('',DIR_WS_TEMPLATE,  $current_page_base,'jscript') . '/back_to_top.min.js' ?>"  type="text/javascript"></script>
Should be:
Code:
<script src="<?php echo   $template->get_template_dir('back_to_top.min.js',DIR_WS_TEMPLATE,   $current_page_base,'jscript') . '/back_to_top.min.js' ?>"   type="text/javascript"></script>
Great. I am currently working on a major package update and will be sure to include these changes. Thank you for posting!

Thanks,

Anne