Page 57 of 116 FirstFirst ... 747555657585967107 ... LastLast
Results 561 to 570 of 1160
  1. #561
    Join Date
    Mar 2014
    Posts
    5
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by picaflor-azul View Post
    I am happy that you like the template and are using it for your website ;)

    If you follow the install instructions in the readme.html file included in the template package you will see that you have missed the step for uploading the sql patches.

    Before getting too far on a godaddy server, I would recommend doing a search of the forum to see the problems associated with this web host.

    Thanks,

    Anne
    Hi Anne,

    So you were completely right. I totally missed the SQL stuff. Thanks very much, feel pretty silly skipping a step like that. I'm on my way making modifications as we speak! Your tutorials and help really made a difference, thanks very much!

  2. #562
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Responsive Sheffield Blue

    Been aiming to fix these in tpl_modules_mobile_categories_tabs.php for several weeks now, but to no avail.

    If I happen to find the fixes, I surely will post them, unless someone beats me to it.

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by cambomb View Post
    Hi Anne,

    So you were completely right. I totally missed the SQL stuff. Thanks very much, feel pretty silly skipping a step like that. I'm on my way making modifications as we speak! Your tutorials and help really made a difference, thanks very much!
    I am so happy that you figured it out ;)

    Thanks,

    Anne

  4. #564
    Join Date
    Sep 2013
    Location
    Cairo, Egypt
    Posts
    21
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by Hany View Post
    Hi Anne

    Bug report
    OS: Android 4.x
    Browser: Google Chrome for Android
    Problem: An incorrect behavior for mega menu, select/click menu item, the click goes to the slider!

    Best of Luck
    Hany
    Hi Anne

    Did you figured out the solution for this problem?

    Best Regards
    Hany

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by Hany View Post
    Hi Anne

    Did you figured out the solution for this problem?

    Best Regards
    Hany
    The mega menu is not touch friendly. It should switch to the mobile menu at lower screen resolutions but I am aware that the mega menu will show on some hand held devices that show the full version of the site. The new responsive template default code solves this problem. I do have plans to update all of the template packages, responsive and legacy to use the new code but don't have any specific eta.



    Thanks,

    Anne

  6. #566
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Responsive Sheffield Blue

    1. Adding hover titles to mobile menu icons
    \includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
    To add titles to icons, replace the following:

    Code:
        <a class="toggleMenu" href="#"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt="m menu image" /></a>
        <?php echo '<a class="m-home" href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" /></a>
        <a class="m-cart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt="m cart" /></a>
    with

    Code:
    <!-- bof buttons -->
    <!-- bof toggle menu button -->
      <a class="mobToggle" href="#"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt=" toggle menu" title="Menu" /></a>
    <!-- bof home page button -->
      <a class="m-home" href="#"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" title="Home" /></a>
    <!-- bof cart page button -->
      <a class="mobCart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt=" cart" title="Cart" /></a>
    <!-- eof buttons -->
    and then replace that highlighted red with your own preference.

    2. Display Login/Logout in mobile menu
    \includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
    Replace the following:

    Code:
         <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    with

    Code:
         <?php
         if ($_SESSION['customer_id']) { ?>
         <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
         <?php
         } else {
           if (STORE_STATUS == '0') {
         ?>
           <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
           <?php
           }
         }
         ?>
    Note: COWOA not installed

  7. #567
    Join Date
    Jul 2008
    Posts
    360
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    I need to modify the center column width to be 100% wide in the home page. I tried going to layout menu, in admin, and set up both sides to be 0 width, even with these changes the template still shows the center column at just 480px wide!

  8. #568
    Join Date
    Mar 2014
    Posts
    5
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by icecold View Post
    I need to modify the center column width to be 100% wide in the home page. I tried going to layout menu, in admin, and set up both sides to be 0 width, even with these changes the template still shows the center column at just 480px wide!
    are you trying to put your featured items in the center and removing the left and right columns just centering the entire featured list out of curiosity?

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by dw08gm View Post
    1. Adding hover titles to mobile menu icons
    \includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
    To add titles to icons, replace the following:

    Code:
        <a class="toggleMenu" href="#"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt="m menu image" /></a>
        <?php echo '<a class="m-home" href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" /></a>
        <a class="m-cart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt="m cart" /></a>
    with

    Code:
    <!-- bof buttons -->
    <!-- bof toggle menu button -->
      <a class="mobToggle" href="#"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt=" toggle menu" title="Menu" /></a>
    <!-- bof home page button -->
      <a class="m-home" href="#"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" title="Home" /></a>
    <!-- bof cart page button -->
      <a class="mobCart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt=" cart" title="Cart" /></a>
    <!-- eof buttons -->
    and then replace that highlighted red with your own preference.

    2. Display Login/Logout in mobile menu
    \includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
    Replace the following:

    Code:
         <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    with

    Code:
         <?php
         if ($_SESSION['customer_id']) { ?>
         <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
         <?php
         } else {
           if (STORE_STATUS == '0') {
         ?>
           <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
           <?php
           }
         }
         ?>
    Note: COWOA not installed

    Thank you for posting your code. I'll be sure to include it in a future update ;)

    Thanks,

    Anne

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by icecold View Post
    I need to modify the center column width to be 100% wide in the home page. I tried going to layout menu, in admin, and set up both sides to be 0 width, even with these changes the template still shows the center column at just 480px wide!
    If you want this only on the home page, you should use this:

    http://www.zen-cart.com/content.php?...ome-pages-only

    Thanks,

    Anne

 

 

Similar Threads

  1. v154 Responsive Sheffield Blue v2.0
    By picaflor-azul in forum Addon Templates
    Replies: 1517
    Last Post: 13 Apr 2024, 01:50 AM
  2. v155 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  3. v154 Responsive Sheffield Blue change menu links
    By Annie_zaz in forum Addon Templates
    Replies: 3
    Last Post: 7 May 2016, 11:33 PM
  4. v154 Responsive Sheffield Blue v.2.0 Pricing not showing
    By SilverHD in forum Addon Templates
    Replies: 13
    Last Post: 4 Nov 2015, 10:57 PM
  5. v154 Questions re: Responsive Sheffield Blue
    By dfontana in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Aug 2015, 02:43 AM

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