Thread: Westminster New

Page 35 of 187 FirstFirst ... 2533343536374585135 ... LastLast
Results 341 to 350 of 1865
  1. #341
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Westminster New

    Quote Originally Posted by reciecup View Post
    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?
    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.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  2. #342

    Default Re: Westminster New

    Quote Originally Posted by RixStix View Post
    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.
    Thanks. I will try that :)

  3. #343
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,294
    Plugin Contributions
    1

    Default Re: Westminster New

    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?

  4. #344
    Join Date
    Feb 2006
    Posts
    72
    Plugin Contributions
    1

    Default Re: Westminster New

    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.

  5. #345
    Join Date
    Feb 2006
    Posts
    72
    Plugin Contributions
    1

    Default Re: Westminster New

    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.

  6. #346
    Join Date
    Feb 2006
    Posts
    72
    Plugin Contributions
    1

    Default Re: Westminster New

    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
    Code:
    <!--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 />
    with
    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 />-->
    After that I had to make the defines in the language files...

    I added to includes/languages/westminster_new/english.php

    Code:
    // 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');
    And toincludes/languages/westminster_new/german.php
    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', '&Uuml;ber uns');
      define('FLEXI_MYACCOUNT', 'Kundenkonto');
      define('FLEXI_SHAREANDCONNECT', 'Weitersagen');

  7. #347
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by dachilla View Post
    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.
    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

  8. #348
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by dachilla View Post
    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
    Code:
    <!--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 />
    with
    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 />-->
    After that I had to make the defines in the language files...

    I added to includes/languages/westminster_new/english.php

    Code:
    // 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');
    And toincludes/languages/westminster_new/german.php
    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');
    Thank you for posting your solution.

    Thanks,

    Anne

  9. #349
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Westminster New

    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
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  10. #350
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,294
    Plugin Contributions
    1

    Default Re: Westminster New

    Quote Originally Posted by RixStix View Post
    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
    It may be that I'm missing something but I thought that the Flexible Footer social icons take the user to your social page/site whereas the addthis links on the product page allow the user to post that product on their social page/site.

 

 

Similar Threads

  1. v155 Getting ajax error in v155 with v154 Westminster template
    By godt in forum General Questions
    Replies: 3
    Last Post: 11 Jul 2016, 12:41 AM
  2. v155 Getting ajax error in v155 with v154 Westminster template
    By MCS_Computers in forum General Questions
    Replies: 10
    Last Post: 21 Mar 2016, 03:58 PM
  3. v154 Modifying Top Menu - Westminster New
    By chelseaneedshelp in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 27 Mar 2015, 04:28 PM
  4. Westminster New doesn't work on mobile phone
    By Pompidompie in forum Addon Templates
    Replies: 3
    Last Post: 26 Mar 2015, 10:34 PM
  5. v151 westminster new Share and Connect
    By Larry0652 in forum Addon Templates
    Replies: 8
    Last Post: 24 Oct 2014, 03:30 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR