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??