Zen Cart Logo
Forums / Addon Templates / Responsive Sheffield Blue v2.0

Responsive Sheffield Blue v2.0

Views: 309,733

Results 481 to 500 of 1,514
2 Dec 2015, 9:03 PM
#481
annie_zaz avatar

annie_zaz

Zen Follower

Join Date:
Mar 2013
Location:
Sydney, Australia
Posts:
140
Plugin Contributions:
0

Responsive Sheffield Blue v2.0

Justrimless:

In admin, at the bottom of the list of options you'll see "share and connect", click BELOW this, there is another row just below that but without a label, so it's not immediately obvious.

But thanks Anne, great template.

Thank you I found it with your instructions :)

2 Dec 2015, 9:04 PM
#482
annie_zaz avatar

annie_zaz

Zen Follower

Join Date:
Mar 2013
Location:
Sydney, Australia
Posts:
140
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

picaflor-azul:

My guess is that you are not looking in the correct place. You need to look one line down to find the social media links as it says in the readme.html file.

Thanks,

Anne

Hi Anne, It was under the Share and Connect link as Justrimless described. Thank you.

3 Dec 2015, 12:35 AM
#483
ted_grapler avatar

ted_grapler

New Zenner

Join Date:
Nov 2015
Location:
New Jersey USA
Posts:
76
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Sheffield Blue v2.0 on new install of Zen Cart 1.5.4 on a home test server. PHP 5.5.9, MySQL 5.5.46, Ubuntu Server 14.04.

Appreciate all the work that went into making the template. Thanks. Google is telling me I need to make my site mobile friendly so am finally getting around to it. Have what is hopefully a simple issue but am still new at this and have not been able to find solution after a few days.

I edited includes/languages/english/responsive_sheffield_blue/header.php to show my store logo and my HEADER_SALES_TEXT. The text (which I have centered) shows up below the logo on both desktop and mobile versions of the test site. I would like it to show up ABOVE the logo and at the very top of the page, or to the right of the logo. One reason is because the text it is visually overwriting the Home | Login | shopping cart icon/text.

Any suggestions are appreciated.

Ted

3 Dec 2015, 3:15 PM
#484
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

Annie_zaz:

Hi Anne, It was under the Share and Connect link as Justrimless described. Thank you.

I am happy that you figured it out ;)

Thanks,

Anne

3 Dec 2015, 3:18 PM
#485
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

Ted Grapler:

Sheffield Blue v2.0 on new install of Zen Cart 1.5.4 on a home test server. PHP 5.5.9, MySQL 5.5.46, Ubuntu Server 14.04.

Appreciate all the work that went into making the template. Thanks. Google is telling me I need to make my site mobile friendly so am finally getting around to it. Have what is hopefully a simple issue but am still new at this and have not been able to find solution after a few days.

I edited includes/languages/english/responsive_sheffield_blue/header.php to show my store logo and my HEADER_SALES_TEXT. The text (which I have centered) shows up below the logo on both desktop and mobile versions of the test site. I would like it to show up ABOVE the logo and at the very top of the page, or to the right of the logo. One reason is because the text it is visually overwriting the Home | Login | shopping cart icon/text.

Any suggestions are appreciated.

Ted

You can move the tagline text by editing the header files in includes/templates/responsive_sheffield_blue/common/tpl_header.php tpl_header_mobile.php, and tpl_header_tablet.php. Then you can adjust the css if needed.

Thanks,

Anne

3 Dec 2015, 8:49 PM
#486
ted_grapler avatar

ted_grapler

New Zenner

Join Date:
Nov 2015
Location:
New Jersey USA
Posts:
76
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Thank you for the quick reply Anne.

Was able to edit the /common/tpl_header.php and get the text to show up at top of page but does not look very good as it is outside the blue border. Think it will look better to the right of the logo. I added the text in html into that file and removed the text from the /header.php file but somehow I don't think that's the right way to do it. Must learn more about CSS. Will keep trying.

Ted

4 Dec 2015, 3:13 PM
#487
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

Ted Grapler:

Thank you for the quick reply Anne.

Was able to edit the /common/tpl_header.php and get the text to show up at top of page but does not look very good as it is outside the blue border. Think it will look better to the right of the logo. I added the text in html into that file and removed the text from the /header.php file but somehow I don't think that's the right way to do it. Must learn more about CSS. Will keep trying.

Ted

If you want the tagline to appear above the logo you have to take the tagline code:

<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
<?php
              if (HEADER_SALES_TEXT != '') {
?>
      <div id="tagline">

<?php echo HEADER_SALES_TEXT;?>

      </div>
<?php
              }
?>

and move it above the logo code:

    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_pag
e_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
    </div>

Thanks,

Anne

8 Dec 2015, 7:05 PM
#488
autoprestige_tuning avatar

autoprestige_tuning

New Zenner

Join Date:
Sep 2014
Location:
lyon
Posts:
6
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

hello
news install Responsive Sheffield Blue V 2.0
zencart 154
the template is ok i need some modif for french
but my admin is very very slowli
one idea ??

thanks
autoprestige-tuning(.)com

8 Dec 2015, 8:50 PM
#489
ted_grapler avatar

ted_grapler

New Zenner

Join Date:
Nov 2015
Location:
New Jersey USA
Posts:
76
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

New install on 1.5.1 with only Easy Populate and Responsive Sheffield Blue 2.0 addons.

Thanks Anne for previous answer about tagline placement. Am making good progress with my test cart - almost there.

I have another minor issue, after a few days of attempts and research still can't figure it out. Want to remove the large black Buy Now button from my category listings. I can remove Buy Now button in the default Classic Contemporary Green template by going to Admin>Configuration>Product Listings and setting Display Product Add to Cart Button to 0. This removes the Buy Now button from my category listings and instead displays the link "... more info". That's what I want on my responsive pages too although having the "...more info" text is not that important because the buyer can just click on the photo or title to be taken to the listing page.

The problem is that when I change to Sheffield Blue 2.0 template the black Buy Now button shows up even though Display Product Add to Cart button still set to 0. I have tried every combination of settings on Admin>Config>Product Listing page and found that if I set Display Product Price/Add to Cart to 0 it will remove the Buy Now button BUT it also removes the price, which I need.

Suggestions from anyone will be greatly appreciated.

Ted

9 Dec 2015, 2:39 PM
#490
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

Autoprestige-tuning:

hello
news install Responsive Sheffield Blue V 2.0
zencart 154
the template is ok i need some modif for french
but my admin is very very slowli
one idea ??

thanks
autoprestige-tuning(.)com

I believe that this has already been addresses earlier in the thread.

Thanks,

Anne

9 Dec 2015, 11:15 PM
#491
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

This is a fresh new install of v1.5.4 and of this template. BTW, I really appreciate you taking the time to design this responsive template and from what I have read of the new v1.6 coming out soon, you are working on a brand new one also. Looking forward to that!

For now I have a bit of a situation that I need some help with. I am trying to change the size of the slides in the slide show. Could you tell me what line on the stylesheet I could find the size of the slide so I could change it? I inspected it and can’t find it anywhere. I would like to change it to 1024 x 768, if possible. If there is more to it than just changing the stylesheet, could you fill me in on that too.

The new website is here: www.lingerieloversboutique.com

Thanks so much for your help.

Silver

10 Dec 2015, 2:46 PM
#492
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

SilverHD:

This is a fresh new install of v1.5.4 and of this template. BTW, I really appreciate you taking the time to design this responsive template and from what I have read of the new v1.6 coming out soon, you are working on a brand new one also. Looking forward to that!

For now I have a bit of a situation that I need some help with. I am trying to change the size of the slides in the slide show. Could you tell me what line on the stylesheet I could find the size of the slide so I could change it? I inspected it and can’t find it anywhere. I would like to change it to 1024 x 768, if possible. If there is more to it than just changing the stylesheet, could you fill me in on that too.

The new website is here: www.lingerieloversboutique.com

Thanks so much for your help.

Silver

You can adjust the width of the slides on line 10 of the stylesheet_flex.css. Adding margin:0 auto; with center it. I would recommend using a percentage as it will be more responsive friendly.

Thanks,

Anne

10 Dec 2015, 2:50 PM
#493
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Anne:

Thank you. I will give it a try.

Silver

10 Dec 2015, 2:57 PM
#494
spawnie69 avatar

spawnie69

Totally Zenned

Join Date:
Sep 2005
Location:
Ocala, FL
Posts:
527
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

How can I add a search icon to tpl_header_mobile.php?

<?php
/**
 * Common Template - tpl_header.php
 *
 * this file can be copied to /templates/your_template_dir/pagename<br />
 * example: to override the privacy page<br />
 * make a directory /templates/my_template/privacy<br />
 * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
 * to override the global settings and turn off the footer un-comment the following line:<br />
 * <br />
 * $flag_disable_header = true;<br />
 *
 * @package templateSystem
 * @copyright Copyright 2003-2012 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version GIT: $Id: Author: Ian Wilson  Tue Aug 14 14:56:11 2012 +0100 Modified in v1.5.1 $
 * Modifies by Anne (Picaflor-Azul.com), Responsive Sheffield Blue v1.0
 */
?>

<?php
  // Display all header alerts via messageStack:
  if ($messageStack->size('header') > 0) {
    echo $messageStack->output('header');
  }
  if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
  echo htmlspecialchars(urldecode($_GET['error_message']), ENT_COMPAT, CHARSET, TRUE);
  }
  if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
   echo htmlspecialchars($_GET['info_message'], ENT_COMPAT, CHARSET, TRUE);
} else {

}
?>


<!--bof-header logo and navigation display-->
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>
<?php
/**
 ******************************* BOF 2.1 **********************************
 */
?>
<div id="headerWrapper" class="<?php echo $fluidisFixed; ?>">
<?php
/**
 ******************************* EOF 2.1 **********************************
 */
?>



<div id="top-middle">
<div class="onerow-fluid <?php echo $fluidisFixed; ?>">

<div id="navMainWrapper">
<div id="navMain">
    <ul>
<?php if ($_SESSION['customer_id']) { ?>
     <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><i class="fa fa-power-off" title="Log Off"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGOFF; ?></span></a><span class="tp-hide"> | </span></li>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><i class="fa fa-user" title="My Account"></i><span class="tp-hide"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a><span class="tp-hide"> | </span></li>
<?php
      } else {
        if (STORE_STATUS == '0') {
?>
     <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li>
    <li class="h-login"><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><i class="fa fa-arrow-right" title="Log In/Register"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGIN; ?></span></a><span class="tp-hide"> | </span></li>
<?php } } ?>


    <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><span class="tp-hide"></span></li>

   <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li> | <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><i class="fa fa-check-square" title="Checkout"></i><span class="tp-hide"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
<?php }?>

</ul>
</div>
</div>
<!--eof-navigation display-->


<!--bof-branding display-->
<div id="logoWrapper">
    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
    </div>
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
<?php
              if (HEADER_SALES_TEXT != '') {
?>
      <div id="tagline">

<?php echo HEADER_SALES_TEXT;?>

      </div>
<?php
              }
?>
<?php
              if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                if ($banner->RecordCount() > 0) {
?>
      <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
                }
              }
?>




    </div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>

</div>


<div id="header-nav">
<div id="cur-lan-header">
    <?php require(DIR_WS_MODULES . 'sideboxes/languages_header.php'); ?>
    <?php require(DIR_WS_MODULES . 'sideboxes/currencies_header.php'); ?>
</div>





<!--bof menu display-->
<?php require($template->get_template_dir('tpl_modules_mobile_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_mobile_categories_tabs.php');?>
<!--eof menu display-->

</div>


<div class="clearBoth"></div>
<!--eof-branding display-->
<!--eof-header logo and navigation display-->

<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>



</div>
</div>


<div class="onerow-fluid">

<?php
    if ($this_is_home_page) {
?>

<?php
if (RSB_SLIDER_STATUS == 'true') {
?>

          <?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common')
                        . '/tpl_home_slider.php');?>


<?php } ?>
<?php } ?>


</div>







<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->

<!--bof-header ezpage links-->
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
<?php } ?>
<!--eof-header ezpage links-->
</div>



<?php } ?>
10 Dec 2015, 3:27 PM
#495
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Ann:

Are you saying that I can place any height slide as long as I add--- margin:0 auto;?

As far as the % of the width. How would that work? The width of the template now is 1119 and I am trying to reduce it to 1024. Do I just do a %? Sorry to be such a pain, but I know what could happen if I mess this up.

Thanks again,

Silver

Thanks again,

Silver

10 Dec 2015, 10:57 PM
#496
goshawk avatar

goshawk

Zen Follower

Join Date:
Aug 2006
Location:
Kihikihi, New Zealand
Posts:
220
Plugin Contributions:
2

Re: Responsive Sheffield Blue v2.0

I have a ZenCart 1.5.4 installation with Responsive Sheffield Blue v2.0 and am getting 2 PHP Fatal errors :

From myDebug.log

1109:Unknown table 'p' in field list :: select count(p.products_id) as total  ==> (as called by) /includes/classes/split_page_results.php on line 78 <== in /includes/classes/db/mysql/query_factory.php on line 155

These errors occur when I am placing items in my shopping cart and proceed to checkout.

On the page it shows:

An unknown response null: :text/html, charset=utf8: :syntax error: JSON parse: unexpected end of data at line 1 column 1 of the JSON data was received while processing an ajax call. The action you requested could not be completed.

Anyone know how to fix this?

Thanks,

Goshawk

11 Dec 2015, 3:52 PM
#497
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

spawnie69:

How can I add a search icon to tpl_header_mobile.php?

<?php /** * Common Template - tpl_header.php * * this file can be copied to /templates/your_template_dir/pagename<br /> * example: to override the privacy page<br /> * make a directory /templates/my_template/privacy<br /> * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br /> * to override the global settings and turn off the footer un-comment the following line:<br /> * <br /> * $flag_disable_header = true;<br /> * * @package templateSystem * @copyright Copyright 2003-2012 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version GIT: $Id: Author: Ian Wilson Tue Aug 14 14:56:11 2012 +0100 Modified in v1.5.1 $ * Modifies by Anne (Picaflor-Azul.com), Responsive Sheffield Blue v1.0 */ ?> <?php // Display all header alerts via messageStack: if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) { echo htmlspecialchars(urldecode($_GET['error_message']), ENT_COMPAT, CHARSET, TRUE); } if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) { echo htmlspecialchars($_GET['info_message'], ENT_COMPAT, CHARSET, TRUE); } else { } ?> <!--bof-header logo and navigation display--> <?php if (!isset($flag_disable_header) || !$flag_disable_header) { ?> <?php /** ******************************* BOF 2.1 ********************************** */ ?> <div id="headerWrapper" class="<?php echo $fluidisFixed; ?>"> <?php /** ******************************* EOF 2.1 ********************************** */ ?> <div id="top-middle"> <div class="onerow-fluid <?php echo $fluidisFixed; ?>"> <div id="navMainWrapper"> <div id="navMain"> <ul> <?php if ($_SESSION['customer_id']) { ?> <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li> <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><i class="fa fa-power-off" title="Log Off"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGOFF; ?></span></a><span class="tp-hide"> | </span></li> <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><i class="fa fa-user" title="My Account"></i><span class="tp-hide"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a><span class="tp-hide"> | </span></li> <?php } else { if (STORE_STATUS == '0') { ?> <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li> <li class="h-login"><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><i class="fa fa-arrow-right" title="Log In/Register"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGIN; ?></span></a><span class="tp-hide"> | </span></li> <?php } } ?>
<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><span class="tp-hide"></span></li>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?> <li> | <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><i class="fa fa-check-square" title="Checkout"></i><span class="tp-hide"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li> <?php }?> </ul> </div> </div> <!--eof-navigation display--> <!--bof-branding display--> <div id="logoWrapper"> <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?> </div> <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?> <div id="taglineWrapper"> <?php if (HEADER_SALES_TEXT != '') { ?> <div id="tagline"> <?php echo HEADER_SALES_TEXT;?>
  </div>
<?php } ?> <?php if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) { if ($banner->RecordCount() > 0) { ?>
  <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php } } ?>
</div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?> </div> <div id="header-nav"> <div id="cur-lan-header"> <?php require(DIR_WS_MODULES . 'sideboxes/languages_header.php'); ?> <?php require(DIR_WS_MODULES . 'sideboxes/currencies_header.php'); ?> </div> <!--bof menu display--> <?php require($template->get_template_dir('tpl_modules_mobile_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_mobile_categories_tabs.php');?> <!--eof menu display--> </div> <div class="clearBoth"></div> <!--eof-branding display--> <!--eof-header logo and navigation display--> <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div> </div> </div> <div class="onerow-fluid"> <?php if ($this_is_home_page) { ?> <?php if (RSB_SLIDER_STATUS == 'true') { ?>
      <?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common')
                    . '/tpl_home_slider.php');?>
<?php } ?> <?php } ?> </div> <!--bof-optional categories tabs navigation display--> <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?> <!--eof-optional categories tabs navigation display--> <!--bof-header ezpage links--> <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?> <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?> <?php } ?> <!--eof-header ezpage links--> </div> <?php } ?>



The template comes with font awesome so you can add your font awesome icon to the file anywhere that you want it to show on phones.

Thanks,

Anne
11 Dec 2015, 3:53 PM
#498
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

SilverHD:

Ann:

Are you saying that I can place any height slide as long as I add--- margin:0 auto;?

As far as the % of the width. How would that work? The width of the template now is 1119 and I am trying to reduce it to 1024. Do I just do a %? Sorry to be such a pain, but I know what could happen if I mess this up.

Thanks again,

Silver

Thanks again,

Silver

Do you want to change the width of the template or just the width of the slide show?

Thanks,

Anne

11 Dec 2015, 3:54 PM
#499
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v2.0

Goshawk:

I have a ZenCart 1.5.4 installation with Responsive Sheffield Blue v2.0 and am getting 2 PHP Fatal errors :

From myDebug.log

1109:Unknown table 'p' in field list :: select count(p.products_id) as total ==> (as called by) /includes/classes/split_page_results.php on line 78 <== in /includes/classes/db/mysql/query_factory.php on line 155

> 
> These errors occur when I am placing items in my shopping cart and proceed to checkout.
> 
> On the page it shows:
> ```
An unknown response null: :text/html, charset=utf8: :syntax error: JSON parse: unexpected end of data at line 1 column 1 of the JSON data was received while processing an ajax call. The action you requested could not be completed.

Anyone know how to fix this?

Thanks,

Goshawk

It looks like you do not have that file uploaded from the template package:

includes/classes/split_page_results.php

Thanks,

Anne

11 Dec 2015, 3:58 PM
#500
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Anne:

I want to change the width and height of the slide show. Sorry for the confusion. Ideally 1024 x 768 but I want to make sure it changes with different browsers.

Thank you,

Silver