-
Re: Westminster New
Quote:
Originally Posted by
Thannaree
Note that all looks good when you add products.
I did a fresh install with 1.5.3 and the empty section of the Special page seems to be a normal feature.
On the other hand I can't find out what's the issue with the TEXT_NO_PRODUCTS appearing of the New Products and Featured Products pages.
-
Re: Westminster New
I've looked as much as I know how to find the source of these which is causing problems. I have compared default template files with my edited template files and have not seen anything obvioius.
Anne, can you help? These are excerpts from a "view source" of any product page.
The template doesn't include any /product_info folder
I'm assuming that the doubleslash between the product_info and file name is most likely the culprit, but where to find those 4 edits?
Server error logs has 4 lines of filedoesnotexist error for each product view.
I do not know when it started.
It could be due to an edit made by me.
Code:
<script src="includes/templates/westminster_new/product_info//css_browser_selector.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//jquery.slimmenu.min.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//easyResponsiveTabs.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//jquery.tabSlideOut.v1.3.js" type="text/javascript"></script>
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
I do not know when it started.
Code:
<script src="includes/templates/westminster_new/product_info//css_browser_selector.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//jquery.slimmenu.min.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//easyResponsiveTabs.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//jquery.tabSlideOut.v1.3.js" type="text/javascript"></script>
I DO know when it started.
After looking at the December 2014 server log, I did find the errors began on Dec 27, coincidentally the same date that Restrict Digital Downloads was installed.
RDD creates several *_ product_info folders within the template folder.
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
I DO know when it started.
After looking at the December 2014 server log, I did find the errors began on Dec 27, coincidentally the same date that Restrict Digital Downloads was installed.
RDD creates several *_ product_info folders within the template folder.
The problem is related to that module install. I am not familiar with that module so it would be best to ask for help on its support thread.
Thanks,
Anne
-
Re: Westminster New
In case someone else has this in the future.....
5 edits to template files
/includes/templates/westminster_new/common/html_header.php LINE 207
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
Code:
<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>
includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.slimmenu.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 366
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.tabSlideOut.v1.3.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 372
Code:
pathToTabImage: '<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Code:
pathToTabImage: '<?php echo $template->get_template_dir('tab.png',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
In case someone else has this in the future.....
5 edits to template files
/includes/templates/westminster_new/common/html_header.php LINE 207
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
Code:
<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>
includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.slimmenu.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 366
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.tabSlideOut.v1.3.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 372
Code:
pathToTabImage: '<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Code:
pathToTabImage: '<?php echo $template->get_template_dir('tab.png',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Thanks for posting your solution. These edits are only necessary if using the Restrict Digital Downloads plugin.
Thanks,
Anne
-
Re: Westminster New
Quote:
Originally Posted by
picaflor-azul
Thanks for posting your solution. These edits are only necessary if using the Restrict Digital Downloads plugin.
Thanks,
Anne
That's not quite true. The code corrections are needed to "play nice" with any plugin that uses the built-in Zen Cart override method that RDD uses.
-
Re: Westminster New
Quote:
Originally Posted by
lat9
That's not quite true. The code corrections are needed to "play nice" with any plugin that uses the built-in Zen Cart override method that RDD uses.
I see, thank you for posting ;) I'll make a note of these changes for a future template upgrade.
Thanks,
Anne
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
In case someone else has this in the future.....
5 edits to template files
/includes/templates/westminster_new/common/html_header.php LINE 207
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
Code:
<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>
includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.slimmenu.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 366
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.tabSlideOut.v1.3.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 372
Code:
pathToTabImage: '<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Code:
pathToTabImage: '<?php echo $template->get_template_dir('tab.png',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Thanks for this..
-
Re: Westminster New
I'm replacing the easyResponsiveTabs bundled with this template with SNAF, and I need to make sure I remove all the code related to the easyResponsiveTabs.. So far this is the list of affected files I found:
westminster_new\jscript\easyResponsiveTabs.js
westminster_new\css\stylesheet_responsive_tabs.css
westminster_new\templates\tpl_dgReview.php
westminster_new\templates\tpl_product_info_display.php
YOUR_ADMIN_FOLDER\includes\installers\westminster_new\1_0.php
My question is this: Are there more files I might have missed that contain code related to the tabs????
-
Re: Westminster New
Quote:
Originally Posted by
DivaVocals
I'm replacing the easyResponsiveTabs bundled with this template with SNAF, and I need to make sure I remove all the code related to the easyResponsiveTabs.. So far this is the list of affected files I found:
westminster_new\jscript\easyResponsiveTabs.js
westminster_new\css\stylesheet_responsive_tabs.css
westminster_new\templates\tpl_dgReview.php
westminster_new\templates\tpl_product_info_display.php
YOUR_ADMIN_FOLDER\includes\installers\westminster_new\1_0.php
My question is this: Are there more files I might have missed that contain code related to the tabs????
No, I think that is it ;)
Thanks,
Anne
-
Re: Westminster New
Quote:
Originally Posted by
picaflor-azul
No, I think that is it ;)
Thanks,
Anne
Cool.. thanks for confirming.. hahaha I see I said SNAF when I MEANT TPP.. Silly me..
-
Re: Westminster New
Found a minor type here: westminster_new\files\includes\templates\westminster_new\templates\tpl_product_r eviews_default.php
Line 79 reads:
Code:
<br calss="clearBoth" />
Should be:
Code:
<br class="clearBoth" />
Dunno if this has been reported already..
-
Re: Westminster New
Quote:
Originally Posted by
DivaVocals
Found a minor type here: westminster_new\files\includes\templates\westminster_new\templates\tpl_product_r eviews_default.php
Line 79 reads:
Code:
<br calss="clearBoth" />
Should be:
Code:
<br class="clearBoth" />
Dunno if this has been reported already..
Thank you so much for posting ;) I am working on a major package upgrade and will definitely include this.
Thanks,
Anne
-
Re: Westminster New
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:
Code:
<?php echo zen_draw_textarea_field('review_text', 60, 5, '', 'id="review-text"'); ?>
Paste this on the next line:
Code:
<?php echo zen_draw_input_field('should_be_empty', '', ' size="60" id="RAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
Didn't see that this had been reported..
-
Re: Westminster New
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" />
-
Re: Westminster New
Quote:
Originally Posted by
Thannaree
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" />
Fantastic!!!!
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
In case someone else has this in the future.....
5 edits to template files
/includes/templates/westminster_new/common/html_header.php LINE 207
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
Code:
<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>
includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.slimmenu.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 366
Code:
<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
Code:
<script src="<?php echo $template->get_template_dir('jquery.tabSlideOut.v1.3.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 372
Code:
pathToTabImage: '<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Code:
pathToTabImage: '<?php echo $template->get_template_dir('tab.png',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Thanks, I have been pulling my hairs out over this. I am actually using the Winchester Responsive theme, but it has the same issues.
-
Re: Westminster New
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
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
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 :
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>
-
Re: Westminster New
Quote:
Originally Posted by
DivaVocals
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
-
Re: Westminster New v 1.3 UPDATE
I just submitted an update to the template package:
* installed the Zen Lightbox plugin
* Added styles for quantity discounts on the product info page
* add code for jqurey core to html_header.php and deleted jscript_jquery.min.php
* removed non functioning sorter from specials all page
* updated flexible footer menu to latest version
* updated font awesome to latest version
* add footer_images folder to images
* replaced all "ad" in image names and css classes, etc. so ad blocker does not block them
* fixed home page slide show banner sort order in tpl_home_slider.php
* Bugfix: http://www.zen-cart.com/showthread.p...12#post1268812
* Bugfix: http://www.zen-cart.com/showthread.p...59#post1237359
* Bugfix: http://www.zen-cart.com/showthread.p...25#post1268325
* Bugfix: http://www.zen-cart.com/showthread.p...87#post1268987
* Bugfix: http://www.zen-cart.com/showthread.p...97#post1268797
* Bugfix: http://www.zen-cart.com/showthread.p...12#post1266212
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
This sounds awesome.. but if I may make a suggestion..
If you are going to bundle in a lightbox contribution, you should consider using Zen Colorbox instead of Zen Lightbox.. Zen Colorbox is maintained by the SAME author as Zen Lightbox. Anyone using Zen Lightbox with a responsive theme SHOULD upgrade/update/replace Zen Lightbox with Zen Colorbox..
More info:
Quote:
Originally Posted by
niestudio
Slimbox, which is what ZLB is based on is no longer in active development, so it's unlikely that a true responsive version will come along. I will compare it to ZCB to see if there is a simple fix I could add, but don't hold your breath :)
Quote:
Originally Posted by
davewest
Slimbox is a very slimed down lightbox... doesn't have code for anything other then images.. where colorbox is a full lightbox and can display anthing... I use it to dispaly images, help, privacy, contact-us form and such... easy to setup, degrades back to a standard popup... responsive, no problems. create the standard popup, add zen colorbox code, set a class, set a watch for the class in DOM, done...
-
Re: Westminster New v 1.3 UPDATE
"If you are going to bundle in a lightbox contribution, you should consider using Zen Colorbox instead of Zen Lightbox.. Zen Colorbox is maintained by the SAME author as Zen Lightbox. Anyone using Zen Lightbox with a responsive theme SHOULD upgrade/update/replace Zen Lightbox with Zen Colorbox.."
Is there a demo where we can see it in action ?
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
Thannaree
"If you are going to bundle in a lightbox contribution, you should consider using Zen Colorbox instead of Zen Lightbox.. Zen Colorbox is maintained by the SAME author as Zen Lightbox. Anyone using Zen Lightbox with a responsive theme SHOULD upgrade/update/replace Zen Lightbox with Zen Colorbox.."
Is there a demo where we can see it in action ?
Download Zen Colorbox and test it if you like.. The responsive bits are found in this file: 1_Installer_Files/includes/templates/YOUR_TEMPLATE/jscript/jquery.colorbox-min.js. (commits for this change can also be found here: https://github.com/daniel-hopkins/ze...2b35a5048bf79f)
The code that makes Zen Colorbox responsive is found in the underlying Colorbox library which Zen Colorbox is based on. http://www.jacklmoore.com/colorbox/. Here's the reference to the Colorbox library updates to make it responsive: https://github.com/jackmoore/colorbo...mment-42039671
Slimbox which Zen Lightbox is based on IS NOT RESPONSIVE and has not been updated in over 5 years.. So EVEN IF Zen Lightbox was responsive (which it is not) the library it's based on is not being maintained, and therefore Zen Lightbox is OBSOLETE (which is why the active maintainer is NOT making any further updates to it).. Out of respect for this support thread, any additional discussion about Zen Lightbox or Zen Colorbox should be posted on the appropriate support forums for these modules..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Download Zen Colorbox and test it if you like.. The responsive bits are found in this file:
1_Installer_Files/includes/templates/YOUR_TEMPLATE/jscript/jquery.colorbox-min.js. (commits for this change can also be found here:
https://github.com/daniel-hopkins/ze...2b35a5048bf79f)
The code that makes Zen Colorbox responsive is found in the underlying Colorbox library which Zen Colorbox is based on.
http://www.jacklmoore.com/colorbox/. Here's the reference to the Colorbox library updates to make it responsive:
https://github.com/jackmoore/colorbo...mment-42039671
Slimbox which Zen Lightbox is based on IS NOT RESPONSIVE and has not been updated in over 5 years.. So EVEN IF Zen Lightbox was responsive (which it is not) the library it's based on is not being maintained, and therefore Zen Lightbox is OBSOLETE (which is why the active maintainer is NOT making any further updates to it).. Out of respect for this support thread, any additional discussion about Zen Lightbox or Zen Colorbox should be posted on the appropriate support forums for these modules..
Thank you so much for your comment ;) I will definitely consider switching over to color box. I was not aware that slimbox was defunct.
But, zen lightbox is responsive:
http://durl.me/829uxy
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Thank you so much for your comment ;) I will definitely consider switching over to color box. I was not aware that slimbox was defunct.
But, zen lightbox is responsive:
http://durl.me/829uxy
Thanks,
Anne
Well in none of my testing was Zen Lightbox responsive particularly on smartphones which is why I switched over to Zen Colorbox. I discovered that there was an issue on responsive templates testing one of Raymonds EARLY responsive template framework prototypes.. Switching to Zen Colobox was the suggestion of the Zen Colorbox (and Zen Lightbox) author when I inquired about responsive behavior and Zen Lightbox. He was the one who made me (and the support thread) aware that the underlying library that Zen Lightbox is based on (Slimbox) is outdated, and because of this he would not be doing any additional updates to Zen Lightbox. He was recommending that people switch to Zen Colorbox instead..
Personally if I use this template again and Zen Lightbox is bundled in I would be removing it anyway because of the Slimbox deal, and the fact that Daniel (the author of both modules) will not be updating this module anymore... Everybody will not agree with me on this, and I know that there are still some Zen Lightbox fans out there.. I'm just not one of them for all the reasons mentioned..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Well in none of my testing was Zen Lightbox responsive particularly on smartphones which is why I switched over to Zen Colorbox. This was the suggestion of the Zen Colorbox and Zen Lightbox author when I inquired about responsive behavior and Zen Lightbox. He was the one who made me and the support thread aware that the underlying library that Zen Lightbox is based on is outdated, and because of this he would not be doing any additional updates to Zen Lightbox. He was recommending that people switch to Zen Colorbox instead..
Personally if I use this template again and Zen Lightbox is bundled in I would be removing it anyway because of the Slimbox deal, and the fact that Daniel (the author) will not be updating this module anymore... Everybody will not agree with me on this, and I know that there are still some Zen Lightbox fans out there.. I'm just not one of them for all the reasons mentioned..
Yes, I agree. I just wanted to link to the emulator that is showing the plugin working on mobile devices.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Yes, I agree. I just wanted to link to the emulator that is showing the plugin working on mobile devices.
Thanks,
Anne
Yes I do acknowledge that the emulator does appear to show it's working.. This wasn't my experience with Zen Lightbox when testing Raymonds early responsive framework, and because of that (and the author's suggestion) I PERSONALLY don't use the Zen Lightbox module anymore.. But yes it does appear to be working..
Anyway.. Whatever you bundle into the template is your call :smile:.. Just looking forward to the new version with the other updates in place.. just wanted to throw in my three cents regarding the differences between the two modules..
-
Re: Westminster New v 1.3 UPDATE
Is it safe to guess that responsive support for android tablets just isn't going to happen? Samsung galaxy tab 3 both 8 & 10" versions are the ones I can test.
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
RixStix
Is it safe to guess that responsive support for android tablets just isn't going to happen? Samsung galaxy tab 3 both 8 & 10" versions are the ones I can test.
I don't see any problems with the Galaxy Tab S:
http://durl.me/82c93r
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
I must have swallowed a dumb pill because that link takes me to a classic green installation instead of a responsive install.
Tab 3 is not a tab s. Screen resolutions are different. 800x1280 vs 1600x2560
The WN demo, which I assume is the latest version, has the same menu issues as before. Menus collapse before a selection can be made. Functionality differs dependent upon whether you touch the menu item or the arrow.
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
RixStix
I must have swallowed a dumb pill because that link takes me to a classic green installation instead of a responsive install.
Tab 3 is not a tab s. Screen resolutions are different. 800x1280 vs 1600x2560
The WN demo, which I assume is the latest version, has the same menu issues as before. Menus collapse before a selection can be made. Functionality differs dependent upon whether you touch the menu item or the arrow.
That is my experience as well with the Android devices.. I have three devices I am testing with.. (smartphone/phablet, 7" tablet, 10" tablet) The dropdown menus do not work well.. The dropdown activates, but you cannot scroll down to get to any of the items without the menu collapsing..
I am going to just look for another menu.. the mobile dropdown menu that is bundled with Genesis (a WordPress theme framework) doesn't have the same issues with the Android devices.. Gonna see if I can isolate the menu code that is used there or just find a menu with similar behavior.. I'll share what I find with you (if you are interested) since both you and I seem to be on the same page with regards to the issues with Android devices..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
That is my experience as well with the Android devices.. I have three devices I am testing with.. (smartphone/phablet, 7" tablet, 10" tablet) The dropdown menus do not work well.. The dropdown activates, but you cannot scroll down to get to any of the items without the menu collapsing..
I am going to just look for another menu.. the mobile dropdown menu that is bundled with Genesis (a WordPress theme framework) doesn't have the same issues with the Android devices.. Gonna see if I can isolate the menu code that is used there or just find a menu with similar behavior.. I'll share what I find with you (if you are interested) since both you and I seem to be on the same page with regards to the issues with Android devices..
I would be happy to change the menu if you find one that you consider better that works with all devices. You can either post the code to the thread or email it to me.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
That is my experience as well with the Android devices.. I have three devices I am testing with.. (smartphone/phablet, 7" tablet, 10" tablet) The dropdown menus do not work well.. The dropdown activates, but you cannot scroll down to get to any of the items without the menu collapsing..
I am going to just look for another menu.. the mobile dropdown menu that is bundled with Genesis (a WordPress theme framework) doesn't have the same issues with the Android devices.. Gonna see if I can isolate the menu code that is used there or just find a menu with similar behavior.. I'll share what I find with you (if you are interested) since both you and I seem to be on the same page with regards to the issues with Android devices..
If you find something that more functional on Android devices, I am interested but coding is not my forte'. The menu collapse is why I put a link to the "renamed sitemap" calling it "Alternate Main Menu" in the footer as a stopgap measure but was hoping that the latest template update would have corrected the menu shortcomings.
I can appreciate that Android device behavior can be problematic since template functions a bit differently in every browser.... Native Samsung, Chrome, FireFox and LastPass. Phone, 7", 8" & 10" The 7" is detected as a phone.
Given the vast number of different Android devices, I can also see where it is difficult to impossible for developers to test every combination, unlike Apple devices which only have a handful of combinations.
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
RixStix
I must have swallowed a dumb pill because that link takes me to a classic green installation instead of a responsive install.
Tab 3 is not a tab s. Screen resolutions are different. 800x1280 vs 1600x2560
The WN demo, which I assume is the latest version, has the same menu issues as before. Menus collapse before a selection can be made. Functionality differs dependent upon whether you touch the menu item or the arrow.
Weird. You can see the test by going to:
http://troy.labs.daum.net/
then putting in the template demo url at the top:
http://www.zenlyzen.com/responsive-z..._mode=isTablet
And selecting "Galaxy Tab S" from the Samsung drop down on the left. Resolution is 800 x 1280.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Done that. Default Classic Contemporary Green template.
Instead, I went to your website, copied the link & opened the WN demo on my Samsung Galaxy Tab 3. Can't click the link on your website using my Android tablet because the menus collapse quicker than I can touch anything.
http://www.zenlyzen.com/responsive-z...estminster_new
Functionality using a mouse on the emulator is not the same as using touch on a real tablet.
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
RixStix
Done that. Default Classic Contemporary Green template.
Instead, I went to your website, copied the link & opened the WN demo on my Samsung Galaxy Tab 3. Can't click the link on your website using my Android tablet because the menus collapse quicker than I can touch anything.
http://www.zenlyzen.com/responsive-z...estminster_new
Functionality using a mouse on the emulator is not the same as using touch on a real tablet.
Ok, if you come across a menu that works better for you, just let me know or post the code here and I will include it. It has to be a compatible license with the GPL and work on all mobile devices.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
RixStix
If you find something that more functional on Android devices, I am interested but coding is not my forte'. The menu collapse is why I put a link to the "renamed sitemap" calling it "Alternate Main Menu" in the footer as a stopgap measure but was hoping that the latest template update would have corrected the menu shortcomings.
I can appreciate that Android device behavior can be problematic since template functions a bit differently in every browser.... Native Samsung, Chrome, FireFox and LastPass. Phone, 7", 8" & 10" The 7" is detected as a phone.
Given the vast number of different Android devices, I can also see where it is difficult to impossible for developers to test every combination, unlike Apple devices which only have a handful of combinations.
Rick and Diva,
Please do me a favor, and take a look at this site that I just completed on your androids and see if the menu behaves better:
http://www.titaniumnecklaceshop.com
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
it throws a script error then displays the default green template
'jQuery' is undefined
File: index.php, Line: 26, Column: 17
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
SignTorch
it throws a script error then displays the default green template
'jQuery' is undefined
File: index.php, Line: 26, Column: 17
Strange, it is working for me. Maybe you need to be using chrome. I found the emulator in the chrome web store.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
RixStix
If you find something that more functional on Android devices, I am interested but coding is not my forte'. The menu collapse is why I put a link to the "renamed sitemap" calling it "Alternate Main Menu" in the footer as a stopgap measure but was hoping that the latest template update would have corrected the menu shortcomings.
I can appreciate that Android device behavior can be problematic since template functions a bit differently in every browser.... Native Samsung, Chrome, FireFox and LastPass. Phone, 7", 8" & 10" The 7" is detected as a phone.
Given the vast number of different Android devices, I can also see where it is difficult to impossible for developers to test every combination, unlike Apple devices which only have a handful of combinations.
Can't test on all devices, but there are options out there that work well on both platforms.. So I will continue to look for one because I can take my client's site live with the current menu..
Quote:
Originally Posted by
RixStix
Functionality using a mouse on the emulator is not the same as using touch on a real tablet.
Agreed!!! That's why I test on the physical devices.. Not to mention these emulators often show things shifted.. Like the site I'm using this template on, the hamburger icon shows as if it's overlaying the logo in the emulator, but it's in the right position on the actual device..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Ok, if you come across a menu that works better for you, just let me know or post the code here and I will include it. It has to be a compatible license with the GPL and work on all mobile devices.
Thanks,
Anne
Yes Anne, I'll share, but so it's clear, I am willing to find a menu that doesn't fully validate using the HTML validation tool as long as the user interactions work, and it doesn't throw any PHP or javascript errors.. I know that the HTML validator is a requirement for you. However, I do not consider ALL the results gospel in this way because I know that the HTML validator OFTEN flags things as "invalid" that are in fact NOT.. So yes I'll share what I find for those folks using your template who want to eliminate usability issues with Android devices, but my objective is a WORKING error free menu not HTML VALIDATION..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Rick and Diva,
Please do me a favor, and take a look at this site that I just completed on your androids and see if the menu behaves better:
http://www.titaniumnecklaceshop.com
Thanks,
Anne
Works GREAT on my smartphone/phablet.. Will test on the tablet in a few (gotta head to a meeting).. will report back..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Rick and Diva,
Please do me a favor, and take a look at this site that I just completed on your androids and see if the menu behaves better:
http://www.titaniumnecklaceshop.com
Thanks,
Anne
Quick look at menu functionality using
generic 7", menu functionality good.
Samsung Galaxy Tab 3 8": Chrome, FireFox, LastPass & Samsung browsers functionality good. ie: no menu to collapse
You didn't ask about this but noticed
Formatting: Firefox: logo.jpg does not resize in portrait mode so sale.jpg overlaps logo.jpg
Formatting: Chrome: logo.jpg does resize in portrait mode so no overlap of sale.jpg
Formatting: Product pages: individual product widths overlap in portrait mode.
Is the area below the slideshow part of the menu categories? Responsive formatting portrait vs landscape
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Strange, it is working for me. Maybe you need to be using chrome. I found the emulator in the chrome web store.
my browser is fine, chrome also displays the default green template
I think the URL should have &template_switch_id=westminster_new
then it works...
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
SignTorch
my browser is fine, chrome also displays the default green template
I think the URL should have &template_switch_id=westminster_new
then it works...
Yes, that is correct ;)
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
I have found that the drop down menu also exhibits the same behaviour (disappearing as you scroll) on my iPad using Safari. I notice all the comments so far are android related, so thought I would chip in...
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
OLCS
I have found that the drop down menu also exhibits the same behaviour (disappearing as you scroll) on my iPad using Safari. I notice all the comments so far are android related, so thought I would chip in...
Interestingly however I have justed tested this site:
http://www.titaniumnecklaceshop.com/
And it works like a dream!
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
OLCS
I have found that the drop down menu also exhibits the same behaviour (disappearing as you scroll) on my iPad using Safari. I notice all the comments so far are android related, so thought I would chip in...
Good to know that it's NOT JUST the Androids having the issue..
-
Re: Westminster New v 1.3 UPDATE
Found another buglet. In this file: includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php
this:
Quote:
<li><a href="<?php echo BOX_INFORMATION_SITE_MAP; ?>">General Info</a>
Probably SHOULD be this:
Quote:
<li><a href="#">General Info</a>
What's currently in place points to an invalid URL.
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Found another buglet. In this file: includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php
this:
Probably SHOULD be this:
What's currently in place points to an invalid URL.
Thanks for the catch! I'll be sure to add this to a new list for the next update.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Thanks for the catch! I'll be sure to add this to a new list for the next update.
Thanks,
Anne
Also, not a BIG DEAL, but it's probably better that the menu label also be put into a language file..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Download Zen Colorbox and test it if you like.. The responsive bits are found in this file:
1_Installer_Files/includes/templates/YOUR_TEMPLATE/jscript/jquery.colorbox-min.js. (commits for this change can also be found here:
https://github.com/daniel-hopkins/ze...2b35a5048bf79f)
The code that makes Zen Colorbox responsive is found in the underlying Colorbox library which Zen Colorbox is based on.
http://www.jacklmoore.com/colorbox/. Here's the reference to the Colorbox library updates to make it responsive:
https://github.com/jackmoore/colorbo...mment-42039671
Slimbox which Zen Lightbox is based on IS NOT RESPONSIVE and has not been updated in over 5 years.. So EVEN IF Zen Lightbox was responsive (which it is not) the library it's based on is not being maintained, and therefore Zen Lightbox is OBSOLETE (which is why the active maintainer is NOT making any further updates to it).. Out of respect for this support thread, any additional discussion about Zen Lightbox or Zen Colorbox should be posted on the appropriate support forums for these modules..
Yes it's nicer than the default popup. Thanks!
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
I just submitted an update to the template package:
... * updated flexible footer menu to latest version ...
Thanks,
Anne
Hi Anne,
Is it this latest version that is not multilingual ?
I can't seem to get this working. I am seriously considering suicide at this stage :-(
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
Thannaree
Hi Anne,
Is it
this latest version that is not multilingual ?
I can't seem to get this working. I am seriously considering suicide at this stage :-(
All of the templates can be multi lingual. The only language installed natively in Picaflor Azul templates is english. If you want to use another language you need to copy the template language files to your language and then translate. The flexible footer menu used in the template does not have a mulit lingual admin interface but some one posted a solution to using this with different languages further back in the thread.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Hi there :)
Thank you, Anne, for another GREAT template. I am using two of your templates for both of my websites. The new one I am currently working with is Westminster New. Your read me file has been very helpful but I cannot find any instructions on how to edit the homepage drop down menus Categories, Information, Contact Us. I'd like to edit the options under the Information tab and pare it down so there are no longer sub categories and display only Shipping and Returns and About Us.
Is someone able to provide some direction on how to do this?
Thanks :)
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
jcrewe
Hi there :)
Thank you, Anne, for another GREAT template. I am using two of your templates for both of my websites. The new one I am currently working with is Westminster New. Your read me file has been very helpful but I cannot find any instructions on how to edit the homepage drop down menus Categories, Information, Contact Us. I'd like to edit the options under the Information tab and pare it down so there are no longer sub categories and display only Shipping and Returns and About Us.
Is someone able to provide some direction on how to do this?
Thanks :)
You can edit the includes/templates/override/templates/tpl_modules_mobile_categories_tabs.php file.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Minor code change suggestion in the includes/templates/westminster_new/common/tpl_header.php file
The original file looks like this:
Code:
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
The Westminster New template looks like this:
Quote:
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><i class="fa fa-shopping-cart" title="Shopping Cart"></i><?php echo $_SESSION['cart']->count_contents();?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><i class="fa fa-check-square-o" title="Checkout"></i><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<?php }?>
May I suggest this instead in a future update:
Code:
<?php //if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><i class="fa fa-shopping-cart" title="Shopping Cart"></i><?php echo $_SESSION['cart']->count_contents();?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><i class="fa fa-check-square-o" title="Checkout"></i><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php //}?>
Note the inclusion of the double slashes (//) in the opening and closing of this code.. This may be anal, but if one is using a file comparison program this helps the program line up the code to better "see" and highlight the file change diffs since they are in their original positions..
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Questions regarding the latest version:
You had some of us test a different menu which seems to work better on Android devices..
Quote:
Originally Posted by
picaflor-azul
Rick and Diva,
Please do me a favor, and take a look at this site that I just completed on your androids and see if the menu behaves better:
http://www.titaniumnecklaceshop.com
Thanks,
Anne
I don't see any changes in the menu included in this template package.. So do I continue my own plans to find a replacement menu or are you still working on this?
Also given that there will likely be no more updates from the author of Zen Lightbox, will that module continue to be bundled into this template??
-
1 Attachment(s)
Re: Westminster New v 1.3 UPDATE
I need some CSS assistance:smile:.. I have managed to incorporate the Ajax Add to Cart module with this template so that it replaces the cart total links in the header. However, I am having a devil of a time trying to get the cart totals to position themselves in the correct position within the rest of the header links..
If you go to this page:
http://clientscrappin(dot)divawebdzg...te-p-3541.html
Attachment 14881
you can see that the cart totals sit to the far left of the rest of the header links. I know this is a CSS change, but I am STUMPED how to get the header links to be positioned between the empty pipe characters (|) between the "Login" and "Checkout" links..:unsure:
HELP please!!
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Questions regarding the latest version:
You had some of us test a different menu which seems to work better on Android devices..
I don't see any changes in the menu included in this template package.. So do I continue my own plans to find a replacement menu or are you still working on this?
Also given that there will likely be no more updates from the author of Zen Lightbox, will that module continue to be bundled into this template??
No, there is no menu change in the updated template package. I may include the different menu in another template package, but will probably not change the menu in this template.
I will probably switch over to colorbox in a future template package update.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
I need some CSS assistance:smile:.. I have managed to incorporate the Ajax Add to Cart module with this template so that it replaces the cart total links in the header. However, I am having a devil of a time trying to get the cart totals to position themselves in the correct position within the rest of the header links..
If you go to this page:
http://clientscrappin(dot)divawebdzg...te-p-3541.html
Attachment 14881
you can see that the cart totals sit to the far left of the rest of the header links. I know this is a CSS change, but I am STUMPED how to get the header links to be positioned between the empty pipe characters (|) between the "Login" and "Checkout" links..:unsure:
HELP please!!
I have installed this plugin a lot with this template. I would recommend checking your tpl_header.php code to make sure that your page elements are showing in the html code in the order that you want them to show in the header. Then I would go into the css rules for each element and remove any positioning like floats, position relative, margins, padding, etc. and then starting fresh, move the elements into place.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
I have installed this plugin a lot with this template. I would recommend checking your tpl_header.php code to make sure that your page elements are showing in the html code in the order that you want them to show in the header.
They are in the order I want since I simply replaced the existing code with the code from the module.. Can you provide links to a site you've used this module on with one of your templates. I'd like to take a look at the CSS in use..
Quote:
Originally Posted by
picaflor-azul
Then I would go into the css rules for each element and remove any positioning like floats, position relative, margins, padding, etc. and then starting fresh, move the elements into place.
Thanks,
Anne
right.. started down this path, but was hoping someone might have an idea of the specifics of the changes needed.. I do know that the jQuery code that drives this module is looking for certain classes and IDs to be in place and I don't want to mess with the functionality..
-
2 Attachment(s)
Re: Westminster New v 1.3 UPDATE
Hi there, I have an issue that when I apply the template to my website the categories stop working, but if I go back to my current template they work again! I'm not sure what is causing this but this is what it looks like
Attachment 14884
in comparison to
Attachment 14885
Also the search bar is conflicting with the currency selector.
Thanks
Dan
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
They are in the order I want since I simply replaced the existing code with the code from the module.. Can you provide links to a site you've used this module on with one of your templates. I'd like to take a look at the CSS in use..
right.. started down this path, but was hoping someone might have an idea of the specifics of the changes needed.. I do know that the jQuery code that drives this module is looking for certain classes and IDs to be in place and I don't want to mess with the functionality..
Here are a few custom designs that might help you:
weblyweb dot com/scubadoc/
www dot flitelite dot com
www dot artinternationalwholesale dot com/
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
NorfolkCleaning
Hi there, I have an issue that when I apply the template to my website the categories stop working, but if I go back to my current template they work again! I'm not sure what is causing this but this is what it looks like
Attachment 14884
in comparison to
Attachment 14885
Also the search bar is conflicting with the currency selector.
Thanks
Dan
My guess is that you have plugins installed that have files in your old template override directory that you have not copied over to the new template override directory. Check your logs folder for errors and fix them.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
Here are a few custom designs that might help you:
weblyweb dot com/scubadoc/
www dot flitelite dot com
www dot artinternationalwholesale dot com/
Thanks,
Anne
Thanks for this.. While this was helpful, it's not exactly what I was trying to do with this module and this template.. In your examples you have the default Ajax Cart module positioned on the same level as the "navMain" menu.. But in all of your examples the Ajax Cart sits to the far right or left of the "navMain".. I was trying to do something slightly different.. I'm actually trying to replace the cart totals text from the default "navMain" with the cart total display from this module.. The issue I was having was that instead of sitting in the same position as the default cart totals, they were sitting to the far left of the entire "navMain".. But I think I have it all worked out now.. Had an after dinner epiphany last night..:smile:
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Thanks for this.. While this was helpful, it's not exactly what I was trying to do with this module and this template.. In your examples you have the default Ajax Cart module positioned on the same level as the "navMain" menu.. But in all of your examples the Ajax Cart sits to the far right or left of the "navMain".. I was trying to do something slightly different.. I'm actually trying to replace the cart totals text from the default "navMain" with the cart total display from this module.. The issue I was having was that instead of sitting in the same position as the default cart totals, they were sitting to the far left of the entire "navMain".. But I think I have it all worked out now.. Had an after dinner epiphany last night..:smile:
I am happy that you figured it out.
Thanks,
Anne
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
picaflor-azul
I am happy that you figured it out.
Thanks,
Anne
Me too.. turned out to be something really minor too.. Always nice when things work out like that.. :smile:
-
Re: Westminster New v 1.3 UPDATE
Not seeing clearly (even with the Firefox Dev Tools) how to lessen the space between the Flexible Footer header and the items beneath the header.. I'd like to bring the menu content closer to the header.. Can I get a hint??
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
DivaVocals
Not seeing clearly (even with the Firefox Dev Tools) how to lessen the space between the Flexible Footer header and the items beneath the header.. I'd like to bring the menu content closer to the header.. Can I get a hint??
You can give .flexFooterCol h4 a margin-top of 0px. By default an H4 has a large margin-top and bottom, which are not shown by tools like firebug
-
Re: Westminster New v 1.3 UPDATE
Quote:
Originally Posted by
Design75
You can give .flexFooterCol h4 a margin-top of 0px. By default an H4 has a large margin-top and bottom, which are not shown by tools like firebug
Ahhhhh.. thanks...:smile:
-
Re: Westminster New
Quote:
Originally Posted by
RixStix
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
Wanted to add my three cents..
http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4ff326d22d3b21a9
I had gotten in the habit of REMOVING the last part of the AddThis javascript from the Picaflor templates when I use 'em (the part I have highlighted above in red).. If I want AddThis' analytics tracking I go to the AddThis site, signup and get MY OWN AddThis Analytics code.. Not gonna leave someone else's tracking code on mine or a client's site.
The latest changes to the way AddThis works are not to my liking. So I am thinking about implementing a social media sharing tool using one which uses social analytics via the Google Analytics' Social Plugin Analytics.. y clients want INFORMATION on how effective social media has been for the site so they can make REAL strategic decisions. I think the latest Google Analytics feature offers just that..
I have been looking at AddToAny because it requires no signup on the AddToAny site because the AddToAny sharing buttons code already integrates with Google Analytics' Social Plugin Analytics
Being able to see social analytics via an old familiar friend, Google Analytics is appealing.. No need to set up an ADDITIONAL account to view my social analytics stats.. No more AddThis doing whatever it thinks it wants to do with my site information, and no more blindly putting sharing buttons with someone else's tracking account on my sites either..
-
Re: Westminster New
Quote:
Originally Posted by
DivaVocals
Wanted to add my three cents..
http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4ff326d22d3b21a9
I had gotten in the habit of REMOVING the last part of the AddThis javascript from the Picaflor templates when I use 'em (the part I have highlighted above in red).. If I want AddThis' analytics tracking I go to the AddThis site, signup and get MY OWN AddThis Analytics code.. Not gonna leave someone else's tracking code on mine or a client's site.
The latest changes to the way AddThis works are not to my liking. So I am thinking about implementing a social media sharing tool using one which uses social analytics via the
Google Analytics' Social Plugin Analytics.. y clients want INFORMATION on how effective social media has been for the site so they can make REAL strategic decisions. I think the latest Google Analytics feature offers just that..
I have been looking at
AddToAny because it requires no signup on the AddToAny site because the
AddToAny sharing buttons code already integrates with
Google Analytics' Social Plugin Analytics
Being able to see social analytics via an old familiar friend,
Google Analytics is appealing.. No need to set up an
ADDITIONAL account to view my social analytics stats.. No more AddThis doing whatever it thinks it wants to do with my site information, and no more blindly putting sharing buttons with someone else's tracking account on my sites either..
Just for the record, the newest update of the template does not have the pubid specified.
Thanks,
Anne
-
Re: Westminster New
Quote:
Originally Posted by
picaflor-azul
Just for the record, the newest update of the template does not have the pubid specified.
Thanks,
Anne
Good to know!! :smile:
-
Re: Westminster New
I have working on removing the (Best Way) text for the shipping estimate. It is set up for per weight unit shipping.
I was able to remove the text here in this file: /store/includes/languages/*your language"/modules/shipping edit the table.php
,however the () remains. So I followed the instructions on this thread, but with no success. http://www.zen-cart.com/showthread.p...t=best*%20way*
Here are my edits in that file.
Original:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . '( ' . $quote[0]['methods'][0]['title'] . ')'),
Edited:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' ' . $quote[0]['methods'][0]['title'] . ''),
Am I in the right file?
-
Re: Westminster New
Quote:
Originally Posted by
14all41
I have working on removing the (Best Way) text for the shipping estimate. It is set up for per weight unit shipping.
I was able to remove the text here in this file: /store/includes/languages/*your language"/modules/shipping edit the table.php
,however the () remains. So I followed the instructions on this thread, but with no success.
http://www.zen-cart.com/showthread.p...t=best*%20way*
Here are my edits in that file.
Original:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . '
( ' . $quote[0]['methods'][0]['title'] . '
)'),
Edited:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' ' . $quote[0]['methods'][0]['title'] . ''),
Am I in the right file?
Nope.. you need to edit the actual language file.. Use the developer tools to locate the language file that the "Best Way" text is in..
-
Re: Westminster New
Quote:
Originally Posted by
14all41
I have working on removing the (Best Way) text for the shipping estimate. It is set up for per weight unit shipping.
I was able to remove the text here in this file: /store/includes/languages/*your language"/modules/shipping edit the table.php
,however the () remains. So I followed the instructions on this thread, but with no success.
http://www.zen-cart.com/showthread.p...t=best*%20way*
Here are my edits in that file.
Original:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . '
( ' . $quote[0]['methods'][0]['title'] . '
)'),
Edited:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' ' . $quote[0]['methods'][0]['title'] . ''),
Am I in the right file?
Here is the site
http://cellularcrib.com/
-
Re: Westminster New
Quote:
Originally Posted by
14all41
See my post JUST above yours..
-
Re: Westminster New
Quote:
Originally Posted by
14all41
I have working on removing the (Best Way) text for the shipping estimate. It is set up for per weight unit shipping.
I was able to remove the text here in this file: /store/includes/languages/*your language"/modules/shipping edit the table.php
,however the () remains. So I followed the instructions on this thread, but with no success.
http://www.zen-cart.com/showthread.p...t=best*%20way*
Here are my edits in that file.
Original:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . '
( ' . $quote[0]['methods'][0]['title'] . '
)'),
Edited:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' ' . $quote[0]['methods'][0]['title'] . ''),
Am I in the right file?
No,
/includes/templates/YOUR_TEMPLATE/templates/tpl_modules_shipping_estimator.php
Those parentheses () are hard coded in the above file in more than 1 place and start around line 109
-
Re: Westminster New
Quote:
Originally Posted by
DivaVocals
See my post JUST above yours..
I edited this file (includes/languages/english/modules/shipping/table.php) by removing the text "best Way"
define('MODULE_SHIPPING_TABLE_TEXT_WAY',' here' );
The problem is the parentheses () are still showing.
-
Re: Westminster New
Quote:
Originally Posted by
rbarbour
No,
/includes/templates/YOUR_TEMPLATE/templates/tpl_modules_shipping_estimator.php
Those parentheses () are hard coded in the above file in more than 1 place and start around line 109
Here is the code from that file from line 97 on. I am not skilled enough to recognize the coding for the parentheses ().
<th scope="col" id="seProductsHeading"><?php echo CART_SHIPPING_METHOD_TEXT; ?></th>
<th scope="col" id="seTotalHeading"><?php echo CART_SHIPPING_METHOD_RATES; ?></th>
</tr>
<?php
for ($i=0, $n=sizeof($quotes); $i<$n; $i++) {
if(sizeof($quotes[$i]['methods'])==1){
// simple shipping method
$thisquoteid = $quotes[$i]['id'].'_'.$quotes[$i]['methods'][0]['id'];
?>
<tr class="<?php echo $extra; ?>">
<?php
if($quotes[$i]['error']){
?>
<td colspan="2"><?php echo $quotes[$i]['module']; ?> (<?php echo $quotes[$i]['error']; ?>)</td>
</tr>
<?php
}else{
if($selected_shipping['id'] == $thisquoteid){
?>
<td class="bold"><?php echo $quotes[$i]['module']; ?> (<?php echo $quotes[$i]['methods'][0]['title']; ?>)</td>
<td class="cartTotalDisplay bold"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][0]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}else{
?>
<td><?php echo $quotes[$i]['module']; ?> (<?php echo $quotes[$i]['methods'][0]['title']; ?>)</td>
<td class="cartTotalDisplay"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][0]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}
}
} else {
// shipping method with sub methods (multipickup)
for ($j=0, $n2=sizeof($quotes[$i]['methods']); $j<$n2; $j++) {
$thisquoteid = $quotes[$i]['id'].'_'.$quotes[$i]['methods'][$j]['id'];
?>
<tr class="<?php echo $extra; ?>">
<?php
if($quotes[$i]['error']){
?>
<td colspan="2"><?php echo $quotes[$i]['module']; ?> (<?php echo $quotes[$i]['error']; ?>)</td>
</tr>
<?php
}else{
if($selected_shipping['id'] == $thisquoteid){
?>
<td class="bold"><?php echo $quotes[$i]['module']; ?> (<?php echo $quotes[$i]['methods'][$j]['title']; ?>)</td>
<td class="cartTotalDisplay bold"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}else{
?>
<td><?php echo $quotes[$i]['module']; ?> (<?php echo $quotes[$i]['methods'][$j]['title']; ?>)</td>
<td class="cartTotalDisplay"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}
}
}
}
}
?>
</table>
<?php
}
}
?>
</form>
</div>
-
Re: Westminster New
1.5.4 I would need the language selection to be on the upper section - with login, shopping cart etc. Is that possible?
-
Re: Westminster New
Quote:
Originally Posted by
kalastaja
1.5.4 I would need the language selection to be on the upper section - with login, shopping cart etc. Is that possible?
This is native template functionality. See the readme.html file for how to turn on the languages in the header.
Thanks,
Anne
-
Re: Westminster New
I do have the "westminster_new_readme.html", but I can't find anything about the languages/top bar, other than in the "Installation" drop down a "Top Specials bar" and that is about "Home Page Banners". Do I have the wrong readme?
-
Re: Westminster New
Quote:
I do have the "westminster_new_readme.html", but I can't find anything about the languages/top bar, other than in the "Installation" drop down a "Top Specials bar" and that is about "Home Page Banners". Do I have the wrong readme?
It seems the language selection is already in right hand side of the header, no ?
-
Re: Westminster New
So it would seem, but not on my version! What am I missing, because I haven't changed a thing after uploading the template!
-
Re: Westminster New
Quote:
Originally Posted by
14all41
Here is the code from that file from line 97 on. I am not skilled enough to recognize the coding for the parentheses ().
<th scope="col" id="seProductsHeading"><?php echo CART_SHIPPING_METHOD_TEXT; ?></th>
<th scope="col" id="seTotalHeading"><?php echo CART_SHIPPING_METHOD_RATES; ?></th>
</tr>
<?php
for ($i=0, $n=sizeof($quotes); $i<$n; $i++) {
if(sizeof($quotes[$i]['methods'])==1){
// simple shipping method
$thisquoteid = $quotes[$i]['id'].'_'.$quotes[$i]['methods'][0]['id'];
?>
<tr class="<?php echo $extra; ?>">
<?php
if($quotes[$i]['error']){
?>
<td colspan="2"><?php echo $quotes[$i]['module']; ?>##(<?php echo $quotes[$i]['error']; ?>)</td>
</tr>
<?php
}else{
if($selected_shipping['id'] == $thisquoteid){
?>
<td class="bold"><?php echo $quotes[$i]['module']; ?>##(<?php echo $quotes[$i]['methods'][0]['title']; ?>)</td>
<td class="cartTotalDisplay bold"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][0]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}else{
?>
<td><?php echo $quotes[$i]['module']; ?>##(<?php echo $quotes[$i]['methods'][0]['title']; ?>)</td>
<td class="cartTotalDisplay"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][0]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}
}
} else {
// shipping method with sub methods (multipickup)
for ($j=0, $n2=sizeof($quotes[$i]['methods']); $j<$n2; $j++) {
$thisquoteid = $quotes[$i]['id'].'_'.$quotes[$i]['methods'][$j]['id'];
?>
<tr class="<?php echo $extra; ?>">
<?php
if($quotes[$i]['error']){
?>
<td colspan="2"><?php echo $quotes[$i]['module']; ?>##(<?php echo $quotes[$i]['error']; ?>)</td>
</tr>
<?php
}else{
if($selected_shipping['id'] == $thisquoteid){
?>
<td class="bold"><?php echo $quotes[$i]['module']; ?>##(<?php echo $quotes[$i]['methods'][$j]['title']; ?>)</td>
<td class="cartTotalDisplay bold"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}else{
?>
<td><?php echo $quotes[$i]['module']; ?>##(<?php echo $quotes[$i]['methods'][$j]['title']; ?>)</td>
<td class="cartTotalDisplay"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax'])); ?></td>
</tr>
<?php
}
}
}
}
}
?>
</table>
<?php
}
}
?>
</form>
</div>
The above hard coded parentheses () are bold in red font, not sure which ones cause I haven't played with this in some time.
-
Re: Westminster New
Excuse me - what is the above mail about? Which file? What functionality?
-
Re: Westminster New
Sorry for being stoopid - it's about shipping..... I was just perplexed about the size of the entry.... Would remove the entry if I could!
-
Re: Westminster New
For some reason the "Contact Us" page (http://localhost/test/index.php?main_page=contact_us) times out. There is a entry in modules/pages/contact_us/header_php.php, with a javascript - shouldn't that be sufficient?.
-
Re: Westminster New
Quote:
Originally Posted by
kalastaja
Sorry for being stoopid - it's about shipping..... I was just perplexed about the size of the entry.... Would remove the entry if I could!
Do you have a languages_header.php under the Tools->Layout Boxes Controller in your admin ?
-
Re: Westminster New
Ok Thannaree - more of the same...... It was not the languages.php but the languages_header - now it's somehow self evident! ( I thought I had tried it out, but obviously I hadn't!)
And it reacts to change of language without moving to Home page - good - run into this problem on a Joomla-site.
-
Re: Westminster New
Hi Anne,
i have a question. I have installed a few Zen Carts on my Webspace and all are loading fine except the three where I have the westminster_new template. The load dead slow. Is there a hidden version check or something I'm not arawe of?
Cheers
D.C.
-
Re: Westminster New
Quote:
Originally Posted by
dachilla
Hi Anne,
i have a question. I have installed a few Zen Carts on my Webspace and all are loading fine except the three where I have the westminster_new template. The load dead slow. Is there a hidden version check or something I'm not arawe of?
Cheers
D.C.
No, there are no hidden anythings. This is not an inherent problem with the template package. It may be related to some modification or plugin you have on the three sites.
Thanks,
Anne
-
Re: Westminster New
How would one go about changing the black backgrounds (header, buttons, etc.) to roulette-green, or is there too much to alter or too many dependencies (foreground-background)?
-
Re: Westminster New
Quote:
Originally Posted by
kalastaja
How would one go about changing the black backgrounds (header, buttons, etc.) to roulette-green, or is there too much to alter or too many dependencies (foreground-background)?
If you want to make css changes to the template I would recommend using the firefox or chrome web developer tools. They will help you find the lines in the stylesheet that need to be changed.
Thanks,
Anne
-
1 Attachment(s)
Re: Westminster New
Thank's for the advice.
I managed quite well (colors are ok etc.), until I "dropped/pushed" the triangle to the row below:
Attachment 14909
Personally I don't need the indicator at all, but I can't find where to remove it.
-
Re: Westminster New
Quote:
Originally Posted by
kalastaja
Thank's for the advice.
I managed quite well (colors are ok etc.), until I "dropped/pushed" the triangle to the row below:
Attachment 14909
Personally I don't need the indicator at all, but I can't find where to remove it.
perhaps YOU don't, but it's a UI indicator for site visitors to KNOW when a menu item has sub-menu items.. or is your expectation that site visitors should have to select each menu item to figure that out??:smile: