No, I think that is it ;)
Thanks,
Anne
Printable View
Found a minor type here: westminster_new\files\includes\templates\westminster_new\templates\tpl_product_r eviews_default.php
Line 79 reads:
Should be:Code:<br calss="clearBoth" />
Dunno if this has been reported already..Code:<br class="clearBoth" />
Noticed when comparing to westminster_new\templates\tpl_product_reviews_write_default.php to the default Zen Cart v1.5.4 code that the honey pot field is missing (this was introduced in v1.5.1):
Around line 70 find this:
Paste this on the next line:Code:<?php echo zen_draw_textarea_field('review_text', 60, 5, '', 'id="review-text"'); ?>
Didn't see that this had been reported..Code:<?php echo zen_draw_input_field('should_be_empty', '', ' size="60" id="RAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
For those who want to have a wordpress icon in (or latest font awesome css for) the footer
Open : includes/templates/westminster_new/common/html_header.php and replace
Code:<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" />
Code:<link href="//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet" />
I just fixed the lines that caused the Restrict Digital Downloads plugin errors. If you use Developer's Tool Kit, you will find that there are additional, similar lines that could use the same fix. Search for $template->get_template_dir to find the others.
Many thanks to lat9 for the assistance
I found two more files that need this same fix:
includes/templates/westminster_new/common/tpl_home_slider.php
Line #41 :Should be:Code:<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.flexslider.js' ?>" type="text/javascript"></script>
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 :Should be: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>
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>