If you look back through the Westminster_New support thread, around POST #408 in early January 2015, you will find several additional, similar edits that should also be made.
missesbeehaven:
If anyone has trouble with their site template displaying incorrectly after installing the RDD plugin I suggest you look at this solution for Lat9 below as this helped me to solve the problem I was having with the Westminster New responsive template.
FOR THE WESTMINSTER NEW Responsive Template you need to make two corrections:
After some digging and research on the forum I have found the fix to the problem with the product info display and it is a small code bug in the Westminster New template files that i fixed. I wanted to post the solution here so others can use the fix and that you could update your code for any future releases :-)
There are two files with a variable that is an empty string, the two files are:
includes/templates/westminster_new/templates/tpl_product_info_display.php
templates/westminster_new/common/html_header.php
Open includes/templates/westminster_new/templates/tpl_product_info_display.php and FIND:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
>
> Replace with:
> ```
<script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
Next OPEN templates/westminster_new/common/html_header.php and FIND:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
>
> Replace with:
> ```
<script src="<?php echo $template->get_template_dir('css_browser_selector.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
I used the admin's Tools->Developers Tool Kit and search for $template->get_template_dir and checked for any variable that is an empty string.