I just thought of another way to go. You could install the youtube video plugin and then just add the code to call that plugin in place of the custom tab code. Check the plugins section.
Thanks,
Anne
Printable View
Hi Anne
Unfortunately, I'm using vimeo because we want the videos to be private. I've worked around it by adding a link to the products page 'description' tab which allows the video to be opened in a new window. Fingers crossed it works when I go live.
This is a great forum btw.
Cheers
Chris
Having issue with home page banners not working. I tried the re-upload of the includes/templates/winchester_new/common/tpl_header.php as you suggested, still nothing. I have the slideshow set to true, and the hometop, homead1, 2 and 3 all set to on. I turned the slideshow off, then on. still nothing.
www.operationhomebrew.com/store
Without looking at all of the changes you have made to the template I can only guess what might be the problem. I know that when I view your page source the slide show code is not on the page. This means that either the slide show is not being called (this is the tpl_header.php file) or maybe you have deleted the tpl_home_slider.php file.
Thanks,
Anne
Both files are there. I've even tried a different template (Stirling Grand) and get the same results, home page slide show won't play. Not sure if this has anything to do with it or not, but a few months ago I moved everything over from an old domain to this new one. I followed the instructions listed elsewhere in this forum for moving my zen cart store and database. On my test server (laptop), the slide shows work fine.
I just don't see the code for the slide show when I view your site source code. This tells me that either the call for the slide show code has been removed or the slide show code itself has been removed.
Editing with an html editor for the define_main_page would not effect the slide show since the code for the slide show is in the tpl_home_slider.php.
Thanks,
Anne
I'm tempted to un-install and then re-install the template just to get it working again. I already tried re-installing the entire template (without un-installing), but it didn't work. I'm not really wanting to undo all my customization again. Thoughts?
How do I turn on the addthis widget in the Westminster_new template? I can see it greyed out in the pi-right section of the product info display, but I can't figure out how to turn it on.
Oh, and thanks very much for an awesome template, very well thought out.
I've had to re-install some of the other modules to get them working properly (after the big move). I'm thinking there is a sql script I should re-upload for these responsive templates..? should I attempt?
Thank you Anne,
It's http://www.tigersoft.com.au
Cheers
John
I'm sorry to be obtuse Anne, but can you show me because I just can't see it. I can see the links in the footer menu set up to direct people to my social networking sites, but I can't find the buttons for the addthis widget which allow people to share what they like on my website.
The code for this widget is in the bottom of the "pi-right" product information box, and so I assumed that the buttons would show up there, but that area is empty. When I inspect the element with firebug, I can see the code for the addthis widget, but it has been greyed out, which is why I assumed it was "turned off" .
Thanks again for any suggestions
Kind Regards
John
Scratch that. If I hit refresh a whole bunch of times, I can get it to display about 20% of the time. Looks like I may have a script problem.
Cheers
John
Thanks Anne. I ended up causing a huge mess re-building the site several times only to find out that things worked fine (your template) until I restored my database, then the slide show quit working. On the final try, I restored the database, leaving out the "configuration" line (I saved a copy of my database without that particular entry), and your template slide show kept working!
Now my problem is when I go into the admin section, drop down to the configuration of this template, it's completely blank. However, when I look at the database, the entries are in there. It's like when I installed the template, the database took it, but the admin-configure-westminister new template configuration won't show it.
So the slide show is working, but I can't shut it off. Any ideas how to get the config stuff to show? Thanks.
Hi there,
Firstly let me say what a stunning template this is. really has had a lot of hard work put into it and it looks great.
Recently decided to switch to it and glad i did.
One question though which may/may not have been answered before but i cant seem to find it, At the bottom of lets say the specials page, there is a tab down the left side with "More Information" which looks like ez pages, how can i remove that whole topic.
Many thanks, i knew it was there lol. i have obviously looked at the for too long it vanished.
Lastly, it must be a silly question, but i don't have a carousel on my front page. i've looked to see if i can switch it on but as far as i can see, it should be on.
yes i have 3 just to test
Has anyone installed CSS JS Loader plugin with this template? I've had to install it as it is required for the Fast and Easy Checkout plugin. I noticed that my source code is a bit untidy.
Temporary link to source code: view-source:tinyurl.com/kljdboe (cut and paste into url. Doesn't work if you put http:// before it)
I've got a couple of issues:
1. Should I be concerned that I'm getting 'undefined' in my header as follows and do I fix it (see line 31 and 46)?
2. I notice that there is duplication of stylesheet and script (line 23-34 with line 38-49). The file affected is includes/templates/westminster_new/common/html_header.php and it's definitely the css js loader bit that's causing the duplication as I've spent two days trying different things and searching for an answer. Lol, it's pretty obvious I'm no programmer! Has anyone managed to sort this? I would be very grateful if someone could point me in the right direction.Code:if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
Thank you!
Thanks for your quick reply Anne. Back to the drawing board for me then! Many thanks!
Just a quick update in case anyone is having the same problem as I am.
1. If you are getting
it's just from using the zen colorbox pluginCode:if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
2. If you've installed CSS JS Loader plugin, you will (if you haven't carefully merged html_header.php) get duplication code for stylesheets and scripts. What you need to do is replace the code below in includes/templates/westminster_new/common/html_header.php
withCode:<?php
/**
* load all template-specific stylesheets, named like "style*.css", alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^style/', '.css');
while(list ($key, $value) = each($directory_array)) {
echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
}
/**
* load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
*/
$manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';
$tmp_products_id = (isset($_GET['products_id'])) ? (int)$_GET['products_id'] : '';
$tmp_pagename = ($this_is_home_page) ? 'index_home' : $current_page_base;
if ($current_page_base == 'page' && isset($ezpage_id)) $tmp_pagename = $current_page_base . (int)$ezpage_id;
$sheets_array = array('/' . $_SESSION['language'] . '_stylesheet',
'/' . $tmp_pagename,
'/' . $_SESSION['language'] . '_' . $tmp_pagename,
'/c_' . $cPath,
'/' . $_SESSION['language'] . '_c_' . $cPath,
'/m_' . $manufacturers_id,
'/' . $_SESSION['language'] . '_m_' . (int)$manufacturers_id,
'/p_' . $tmp_products_id,
'/' . $_SESSION['language'] . '_p_' . $tmp_products_id
);
while(list ($key, $value) = each($sheets_array)) {
//echo "<!--looking for: $value-->\n";
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . $value . '.css';
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
}
/**
* custom category handling for a parent and all its children ... works for any c_XX_XX_children.css where XX_XX is any parent category
*/
$tmp_cats = explode('_', $cPath);
$value = '';
foreach($tmp_cats as $val) {
$value .= $val;
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/c_' . $value . '_children.css';
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/' . $_SESSION['language'] . '_c_' . $value . '_children.css';
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
$value .= '_';
}
/**
* load printer-friendly stylesheets -- named like "print*.css", alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^print/', '.css');
sort($directory_array);
while(list ($key, $value) = each($directory_array)) {
echo '<link rel="stylesheet" type="text/css" media="print" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
}
/**
* load all site-wide jscript_*.js files from includes/templates/YOURTEMPLATE/jscript, alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.js');
while(list ($key, $value) = each($directory_array)) {
echo '<script type="text/javascript" src="' . $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
}
/**
* load all page-specific jscript_*.js files from includes/modules/pages/PAGENAME, alphabetically
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/', '.js');
while(list ($key, $value) = each($directory_array)) {
echo '<script type="text/javascript" src="' . $page_directory . '/' . $value . '"></script>' . "\n";
}
/**
* load all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.php');
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value); echo "\n";
}
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/');
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
require($page_directory . '/' . $value); echo "\n";
}
Thank you Anne. I think I just needed you to say carefully! :)Code:<?php
/**
* load the loader files
*/
if($RI_CJLoader->get('status') && (!isset($Ajax) || !$Ajax->status())){
$RI_CJLoader->autoloadLoaders();
$RI_CJLoader->loadCssJsFiles();
$files = $RI_CJLoader->header();
foreach($files['css'] as $file)
if($file['include']) {
include($file['src']);
} else if (!$RI_CJLoader->get('minify_css') || $file['external']) {
echo '<link rel="stylesheet" type="text/css" href="'.$file['src'].'" />'."\n";
} else {
echo '<link rel="stylesheet" type="text/css" href="min/?f='.$file['src'].'&'.$RI_CJLoader->get('minify_time').'" />'."\n";
}
foreach($files['jscript'] as $file)
if($file['include']) {
include($file['src']);
} else if(!$RI_CJLoader->get('minify_js') || $file['external']) {
echo '<script type="text/javascript" src="'.$file['src'].'"></script>'."\n";
} else {
echo '<script type="text/javascript" src="min/?f='.$file['src'].'&'.$RI_CJLoader->get('minify_time').'"></script>'."\n";
}
}
Admin page titles changed.
Admin: Modules: Payment
Admin: Modules: Shipping
Admin: Modules: Order Total
When I navigate to any of those 3 pages within Admin, the title displayed is "Flexible Footer Menu" instead of the proper page title.
This is a bug in the Flexible Footer Columns Menu for 1.5.x plugin,
open: /YOUR_ADMIN_FOLDER/includes/languages/english/extra_definitions/flexible_footer_menu.php
find:
define('HEADING_TITLE','Flexible Footer Menu');
change to:
//define('HEADING_TITLE','Flexible Footer Menu');
Thank you Raymond,
That took care of things.
I have had this template installed for a couple of months now and it has been nothing but awesome! Thanks, Anne :)
There is however, one issue that I have just noticed. In the mobile version, I click on the little menu icon to display the dropdown menu options. If I scroll down to select and option, the dropdown menu vanishes. This is on an Android phone. I have not tested this on any other devices. Any ideas on what maybe causing this to happen?
Also, which code in the tpl_main_page.php do I remove to get rid of the "Back To Top" button?
Link to my site is www.LoveKariDae.com in case that will help....
A workaround is to create a "button" to use in the Flexible Footer Menu & label it "Alternate Main Menu". Associate the link to the SiteMap to the button.
Many customers will not know what a sitemap is but if you call it an Alternate Main Menu, they can figure out how to get where they want to go.
The issue can be frustrating for customers using certain Android device/browser combinations.
You can see the button in action on our site.
I see that the slide out div has an href attached to its button of
http://link-for-non-js-users.html/
Trying to think logically it seems to me that if javascript is not enabled then the button should lead to a page where the user can see the slide out div's content.
If I turn off javascript the button disappears and the div content is displayed at the bottom of the page. If this is expected then what would be the point of the href attribute?
Hi,
first thank you for your great templates and all the effort!
it seems impossible to me to translate the
I am trying to translate the template atm for the multi language version english/german. Unfortunately I am not a programmer and it seems impossible for me to me to translate the flexible footer menu, at least I can't find a language file. Guessing it's something with the database and my SQL skills are absent, so to speak.
Any help is appreciated.
D.C.
I wrote some b.s. in my last post... looks like it got mixed up...
Anyway: I wanted to say I am not able to translate the flexi footer menu... Can't find a language file for that... Looks like it's something in the Database and I don't know how to do this. Any help would be appreciated.
I kinda solved the problem myself. It's not the most elegant way but works fine for me...
In includes/templates/westminster_new/common/tpl_footer.php I replaced
withCode:<!--bof-flexible footer menu display -->
<div id="flex-navSupp">
<div class="onerow-fluid <?php echo $fluidisFixed; ?>">
<?php require($template->get_template_dir('tpl_flexible_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_flexible_footer_menu.php'); ?>
<br /><br />
After that I had to make the defines in the language files...Code:<!--bof-own footer menu display -->
<div id="flex-navSupp">
<div class="onerow-fluid ">
<div class="flexFooterCol ffCcol1" style="width: 32.4%"><ul><li><h4><?php echo FLEXI_SHOP; ?></h4></li>
<li><a href="index.php?main_page="><?php echo FLEXI_HOME; ?></a></li>
<li><a href="index.php?main_page=featured_products"><?php echo FLEXI_FEATURED; ?></a></li>
<li><a href="index.php?main_page=specials"><?php echo FLEXI_SPECIALS; ?></a></li>
<li><a href="index.php?main_page=products_new"><?php echo FLEXI_NEWARRIVALS; ?></a></li>
<li><a href="index.php?main_page=products_all"><?php echo FLEXI_VIEWALL; ?></a></li>
</ul></div><div class="flexFooterCol ffCcol2" style="width: 32.4%"><ul><li><h4><?php echo FLEXI_CUSTOMERSERVICE; ?></h4></li>
<li><a href="index.php?main_page=shippinginfo"><?php echo FLEXI_SHIPPINGANDRETURNS; ?></a></li>
<li><a href="index.php?main_page=contact_us"><?php echo FLEXI_CONTACTUS; ?></a></li>
<li><a href="index.php?main_page=about_us" class="activePage"><?php echo FLEXI_ABOUTUS; ?></a></li>
<li><a href="index.php?main_page=account"><?php echo FLEXI_MYACCOUNT; ?></a></li>
</ul></div><div class="flexFooterCol ffCcol4" style="width: 32.4%"><ul><li><h4><?php echo FLEXI_SHAREANDCONNECT; ?></h4></li>
<li class="flexFooterColText"><a href="https://www.facebook.com/Custom.Zen.Cart.Design" target="_blank"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/picaflorazul" target="_blank"><i class="fa fa-twitter"></i></a><a href="http://www.pinterest.com/picaflorazul" target="_blank"><i class="fa fa-pinterest"></i></a><a href="https://www.youtube.com/user/ZenCartEasyHelp" target="_blank"><i class="fa fa-youtube"></i></a><a href="" target="_blank"><i class="fa fa-instagram"></i></a></li>
</ul></div><br class="clearBoth" /><br /><br />
<!--eof-own footer menu display -->
<!--bof-flexible footer menu display -->
<!--<div id="flex-navSupp">
<div class="onerow-fluid <?php echo $fluidisFixed; ?>">
<?php require($template->get_template_dir('tpl_flexible_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_flexible_footer_menu.php'); ?>
<br /><br />-->
I added to includes/languages/westminster_new/english.php
And toincludes/languages/westminster_new/german.phpCode:// defines Own Flexi Menu
define('FLEXI_SHOP', 'Shop');
define('FLEXI_HOME', 'Home');
define('FLEXI_FEATURED', 'Featured Items');
define('FLEXI_SPECIALS', 'Specials');
define('FLEXI_NEWARRIVALS', 'New Arrivals');
define('FLEXI_VIEWALL', 'View all');
define('FLEXI_CUSTOMERSERVICE', 'Customer Service');
define('FLEXI_SHIPPINGANDRETURNS', 'Shipping and Returns');
define('FLEXI_CONTACTUS', 'Imprint & Contact');
define('FLEXI_ABOUTUS', 'About Us');
define('FLEXI_MYACCOUNT', 'My Account');
define('FLEXI_SHAREANDCONNECT', 'Share and Connect');
Code:// defines Own Flexi Menu
define('FLEXI_SHOP', 'Shop');
define('FLEXI_HOME', 'Homepage');
define('FLEXI_FEATURED', 'Empfohlene Artikel');
define('FLEXI_SPECIALS', 'Sonderangebote');
define('FLEXI_NEWARRIVALS', 'Neue Artikel');
define('FLEXI_VIEWALL', 'Alle Artikel');
define('FLEXI_CUSTOMERSERVICE', 'Kundenservice');
define('FLEXI_SHIPPINGANDRETURNS', 'Lieferung und Versand');
define('FLEXI_CONTACTUS', 'Impressum & Kontakt');
define('FLEXI_ABOUTUS', 'Über uns');
define('FLEXI_MYACCOUNT', 'Kundenkonto');
define('FLEXI_SHAREANDCONNECT', 'Weitersagen');
Yes, the flexible footer menu module that I used for the footer menu is currently not multi language friendly. I believe that the author, rbarbour, is working on making it mutli language friendly. For now, if you want the footer in another language, you can re code it and use constants which can be defined in the language files.
Thanks,
Anne
Why does the normal flexible footer social media FB, twitter, pinterest, etc function normally on most pages but on product pages use ADDTHIS coding? I'm not sure where else AddThis appears but I just noticed that tracking software was detecting it and we have previously assured our customers that we would have nothing to do with AddThis after their canvas fingerprinting project was discovered.
Can all references and uses of ADDTHIS be removed or disabled? Easily? And just use the normal flexible footer code instead?
ADDTHIS is evil
OOPS, the AddThis script/buttons are hidden on the page (possibly a result of one of my initial edits). I made the wrong association that they were the ones in the flexible footer area since those were the only icons visible.
The code is in /includes/templates/westminster_new/templates/tpl_product_info_display.php
Commented the ADDTHIS code beginning line 157
Code:<!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a> <a class="addthis_button_tweet"></a> <a class="addthis_button_pinterest_pinit"></a> <a class="addthis_counter addthis_pill_style"></a> </div> <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4ff326d22d3b21a9"></script> <!-- AddThis Button END -->
AddThis code is included with the template in the mentioned file and I am not saying that it was included with any malicious intentions.
I may be in the minority but I do consider AddThis evil; especially when code has references to 'geolocate' in the script, that does raise flags on my end.
Since commenting the code doesn't remove it from "ViewSource", I have removed it from the file.
I apologize in advance if this has been answered. My client would like to have banners on the home page w/ right column. Is there a way to turn on the right column of the home page? Thanks again for all you have done, love your templates.
I am trying to edit the share and connect on the footer but when I goto Admin--Tools--Flexible Footer Menu and click edit on share and connect the column contents is blank and has nothing to edit. Am I missing something? I am using ZenCart 1.5.3
Hello,
i found a bug in the westminster template
When using the dropdown menu going to
information>general info
or information>useful links
and and clicking there without going deeper in the tree i get an 404 page not found error.
Anyone knows where to solve this? Best way to do is to make this not be able to click at all.
Picture shows the spot
Attachment 14744
Can you tell we where to find the links as it is now, so i can adjust the sitemap link that it works.
As it is now when you clic the part in the red circle you get a page not found, and this is not only at our shop the case but even in your live demo store.
Check it
http://www.zenlyzen.com/responsive-z...estminster_new
Hi could not locate were to start a new thread so I guess I'll start here.
How to remove?
V153, Clean install. Using westminster_new Template. Database SQL backup. FTP and zc_install. PHP Version: 5.3.27 (Zend: 2.3.0), Database: MySQL 5.5.40-cll, Installed many carts. No real problem just want to remove items from menu but can not locate where they are. http://luigi1.com/LuigisPizza/
HI,
On the above site I would like to remove some items from the menu options but can not locate where the are. Can anyone point me in the right direction? I could find were to remove the text but in deleting it, the link too it box still remains and works. Items to remove are;
Under INFORMATION -> Delivery Available -> Login, Create an account, & shipping and returns.
Under General Info -> Gift certificate FAQ, Discount coupons, & unsubscribe to newsletter.
Thank you for your help
Mark
HI Sorry, link is http://www.luigi1.com
Mark
The sitemap link in the header menu in the demo does work. It is true that if you click on general info, you get the page not found.
You can fix the link by changing this:
to this:Code:<li><a href="<?php echo BOX_INFORMATION_SITE_MAP; ?>">General Info</a>
and this:Code:<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>">General Info</a>
to this:Code:<li><a href="<?php echo BOX_INFORMATION_SITE_MAP; ?>"><?php echo TITLE_EZ_PAGES; ?></a>
Thanks,Code:<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>">General Info</a>
Anne
http://www.zen-cart.com/showthread.p...12#post1266212
You can edit the includes/templates/override/templates/tpl_modules/mobile_categories_tabs.php file.
Thanks,
Anne
HI Anne, I looked for
includes/templates/override/templates/tpl_modules/mobile_categories_tabs.php
This does not exist in my files.??? No override folder in my file structure. Just All business, classic, template_default, and Westminster_new only folders I have in templates.
Mark
Hi Anne
I have what feels to me like a really BIG problem. I am currently running my zen cart under your Dover Fine Theme and it is working perfectly. With the new year rolling around I feel it is time for a change so I started working on your Westminster New theme and love how it has come out. The problem I am having is that I am still running on Zen Cart 1.5.1 and for whatever reason when I switch from Dover Fine to Westminster New Non of my pages work. It's as though it is not connecting to my database but the drop down menu has everything in it and but when you click on something it just goes to a black lower page.
Attachment 14759
With Dover Theme everything seems to work perfectly:
Attachment 14760
but when I try to go to the exact same subcatagory in the dropdown menu of Westminster New I get the first image. I can see the subcatagories, I just dont understand why I cannot see any products as illustrated below:
Attachment 14761
Please help, I am so proud of what you have helped me create but now I have hit a really big road block. Do I have to wipe everything out and reload the new zen cart and start from scratch and loose all my working plugins?
Regards
Erwin
This is not a problem with the template package.
My guess is that you have plugins installed that have files in the dover fine override folder that have not been copied to the westminster new override folder. This has to be done with any new template install.
Thanks,
Anne
Hi Anne
Thank you so much that sounds exactly right but please excuse my ignorance. Where would I find the Dover Overrides Folder or could you explain to me what needs to be done to fix my error in a more comprehensive way as I am still but a fledgling when it comes to Zen Cart and you really do such amazing work. I really appreciate the assistance.
Regards
Erwin
total newb (to zen cart) here, just getting started, and this theme is so impressive I just wanted to say thank you
I'm going to plan on using it, and if (when) I need a developer, you've got the job...
still wrapping my brain around zen cart, been using x-cart, so not used to having features, and options and optimism...
Hi Anne,
I love this template...
I do not know if you asked this question, but on the product page, the additional images aren't shown, only the first image. How to display additional images?
Tks, Alex.
Hi Anne,
it's me again... I have a little problem and was hoping you could help.
First the website:
http://www.tightshop.net/clean/index...roducts_id=152
When I open a Product page in the desktop version (see link) the mobile menu button appears on the top right :(
What am I doing wrong?
Cheers
Stefan
Anne thank you for another great template.
My shop is multilingual, any idea how I can load different homepage banners for each language ?
thanks,
Fons
Thanks Anne! It looks linke I have a problem with the Zen Lightbox. I read the discussion of you and Frank on page 7. Is it correct that he simply deleted this line
echo '<script type="text/javascript" src="' . $template->get_template_dir('.js', DIR_WS_TEMPLATE, $current_page_base, 'jscript') . '/jquery-1.4.4.min.js"></script>';
in includes/classes/zen_lightbox/slimbox.php
?
I tried it but this kinda messes up the lightbox.
Frank, if you read this, did you do anything else to make it work? Please help!
Cheers
D.C.
Hi Anne, thank you so much! It worked.
Nope, nothing else, just what you read on page 7 and related posts/answers.
Versions 1.10.2 and 1.4.4 are having a conflict. Only use one version - namely the latest 1.10.2 (could be updated again by now, I don't know)
I see you got it working now.
Cheers / Frank
I originally posted that solution on winchester_responsive thread, though it was actually meant for responsive_new.
This is a simple solution to make the slideshow multilingual (Thanks again for the directions Anne!)
For those who'd like to try it out, this is what I did for a slide in Spanish.
1) Clone includes/templates/westminster_new/common/tpl_home_slider.php and rename it tpl_home_slider_es.php
2) Open tpl_home_slider_es.php and replaced (on line 4) homepageslide1 with homepageslide2
3) Open includes/languages/spanish/html_includes/westminster_new/define_main_page.php and change (on line 22 and 23)
toPHP Code:
<?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common')
. '/tpl_home_slider.php');?>
4) Open Tools/Banner Manager in the admin and create 5 new banners, entering homepageslide2 in the "or enter a new banner group below" field.PHP Code:
<?php require($template->get_template_dir('tpl_home_slider_es.php',DIR_WS_TEMPLATE, $current_page_base,'common')
. '/tpl_home_slider_es.php');?>
There seems to be 2 little bugs:
- When there is no product on the Featured page, there is a TEXT_NO_PRODUCTS but not the actual text.
- When there is no product on the Specials page, there is nothing at all on the page (No title, Sort-by box etc).
Please advise
Hi Anne,
Now worries. I have just noticed these 2 but am not personally affected as I have products on these 2 pages. I will take a look though.
Now my main concern is getting the footer multilingual, which turns out to be complicated for the non-developer I am.
Anyone giving me directions will be most welcomed!