Zen Cart Logo
Forums / Addon Templates / Responsive All Business Template

Responsive All Business Template

Views: 103,480

Results 101 to 120 of 393
1 Feb 2014, 7:05 AM
#101
nfallat avatar

nfallat

New Zenner

Join Date:
Jan 2009
Posts:
84
Plugin Contributions:
0

Responsive All Business Template

picaflor-azul:

I doubt that this is effecting your sales. According to these stats, only about 3% of users are still using ie8:

http://www.w3schools.com/browsers/browsers_explorer.asp

I actually did not customize these buttons in any way, so I can't even guess as to the problem. It seems to be related to the floating. I won't take a whole lot of time to get the buttons floating correctly, but to make it so they show, add this to the bottom of your stylesheet.css file:

.ie8 #shoppingCartDefault .forward{float:none;}
.ie8 #shoppingCartDefault .back{float:none;}

> 
> Thanks,
> 
> Anne


Thank you so much.  That works!
Nancy
1 Feb 2014, 3:27 PM
#102
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

nfallat:

Thank you so much. That works!
Nancy

I am happy that it worked ;)

Thanks,

Anne

8 Feb 2014, 3:49 PM
#103
barendfaber avatar

barendfaber

Zen Follower

Join Date:
Apr 2010
Posts:
263
Plugin Contributions:
0

Re: Responsive All Business Template

Hi Anne,

Hope you are well. I have messed up somewhere it seems. I am working on https://www.floweryard.digi-blue.co.uk, using version 1.5.1.

I have removed the slide show from the home page and added my own text. I then went to admin - configuration - layout settings, disabled the right column and increased the left column to 225px. Now everything that is in the centre column is displayed at the bottom. I tried to set it to 175 px, but this does not work. What can I do to get the centre column, even in categories, to display in the correct position next to my left column?

Kind regards

B

8 Feb 2014, 4:33 PM
#104
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

barendfaber:

Hi Anne,

Hope you are well. I have messed up somewhere it seems. I am working on https://www.floweryard.digi-blue.co.uk, using version 1.5.1.

I have removed the slide show from the home page and added my own text. I then went to admin - configuration - layout settings, disabled the right column and increased the left column to 225px. Now everything that is in the centre column is displayed at the bottom. I tried to set it to 175 px, but this does not work. What can I do to get the centre column, even in categories, to display in the correct position next to my left column?

Kind regards

B

This may be related to a bug in the includes/templates/responsive_all_business/common/tpl_header.php file.

Find this code:

<!--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>'; ?>
<?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></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>

<br class="clearBoth" />
<!--eof-branding display-->

and replace it with this:

<!--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_TEX
T) . '</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></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
                                                                                                   }
    }
?>


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

</div>
<br class="clearBoth" />
<!--eof-branding display-->

Thanks,

Anne

8 Feb 2014, 4:39 PM
#105
barendfaber avatar

barendfaber

Zen Follower

Join Date:
Apr 2010
Posts:
263
Plugin Contributions:
0

Re: Responsive All Business Template

Hi Anne,

Thank you for the quick reply. Tried to replace it, but this makes the site disappear apart from the background.

B

8 Feb 2014, 4:47 PM
#106
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

barendfaber:

Hi Anne,

Thank you for the quick reply. Tried to replace it, but this makes the site disappear apart from the background.

B

I replaced the code in the template demo and it worked:

http://zenlyzen.com/responsive/index.php?main_page=index&template_switch_id=responsive_all_business

Be sure that you are copying and pasting the exact block of code and that there are no weird line breaks in the pasted code.

<!--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></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
                                                                                                   }
    }
?>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>                                                                                                                                                                

</div>
<br class="clearBoth" />
<!--eof-branding display-->

Thanks,

Anne

8 Feb 2014, 4:51 PM
#107
barendfaber avatar

barendfaber

Zen Follower

Join Date:
Apr 2010
Posts:
263
Plugin Contributions:
0

Re: Responsive All Business Template

Hi Anne,

I am sure I copied the code correctly, seems I didn't! Jut copied the code from the last response, deleted on tpl_header.php and pasted, and wow, it now works! Thank you ever so much for helping with this on a day off!

Best,

B

8 Feb 2014, 4:55 PM
#108
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

barendfaber:

Hi Anne,

I am sure I copied the code correctly, seems I didn't! Jut copied the code from the last response, deleted on tpl_header.php and pasted, and wow, it now works! Thank you ever so much for helping with this on a day off!

Best,

B

I am happy that it worked ;)

Thanks,

Anne

16 Feb 2014, 8:04 PM
#109
nfallat avatar

nfallat

New Zenner

Join Date:
Jan 2009
Posts:
84
Plugin Contributions:
0

Re: Responsive All Business Template

Hi Anne,

This is Nancy again with promstobeaches.com using Responsive All Business.

http://www.promstobeaches.com/

Forgive me if I already asked and solved this problem before. I thought I did but, if so, it is a problem again. Version 1.5.1.

IE8 browsing results in security warning pop up when going to SSL pages. Is there a fix for that in the stylesheet? Also security pop up in the admin.
Thanks,
Nancy

16 Feb 2014, 10:51 PM
#110
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

nfallat:

Hi Anne,

This is Nancy again with promstobeaches.com using Responsive All Business.

http://www.promstobeaches.com/

Forgive me if I already asked and solved this problem before. I thought I did but, if so, it is a problem again. Version 1.5.1.

IE8 browsing results in security warning pop up when going to SSL pages. Is there a fix for that in the stylesheet? Also security pop up in the admin.
Thanks,
Nancy

This is not being caused by the template. You have probably hard coded non ssl links or images somewhere in the template.

Thanks,

Anne

17 Feb 2014, 3:42 AM
#111
nfallat avatar

nfallat

New Zenner

Join Date:
Jan 2009
Posts:
84
Plugin Contributions:
0

Re: Responsive All Business Template

picaflor-azul:

This is not being caused by the template. You have probably hard coded non ssl links or images somewhere in the template.

Thanks,

Anne

You are right. I was puzzled because I had just done double-check last week on all images for this but I recently updated an image in the footer and forgot to add the (s). That was it. Thanks!
Nancy

17 Feb 2014, 3:40 PM
#112
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

nfallat:

You are right. I was puzzled because I had just done double-check last week on all images for this but I recently updated an image in the footer and forgot to add the (s). That was it. Thanks!
Nancy

It is a better practice to use relative links and not absolute links with https://

Thanks,

Anne

1 Mar 2014, 10:19 PM
#113
ponderay_1 avatar

ponderay_1

New Zenner

Join Date:
Dec 2009
Posts:
5
Plugin Contributions:
0

Re: Responsive All Business Template

A question about large images not sizing right in Firefox 27? On your demo pages and my page that I am setting up at (https://www.otepnw.com/store) I’m using Responsive All Business. When I click on a product then click on Larger Image the image doesn't size right. But they work in IE and Chrome. Also they all work on my Android phone in mobile Chrome, Firefox and default Browser.
Bob

3 Mar 2014, 2:55 PM
#114
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

Ponderay*1:

A question about large images not sizing right in Firefox 27? On your demo pages and my page that I am setting up at (https://www.otepnw.com/store) I’m using Responsive All Business. When I click on a product then click on Larger Image the image doesn't size right. But they work in IE and Chrome. Also they all work on my Android phone in mobile Chrome, Firefox and default Browser.
Bob

This was just discussed the other day on another one of the responsive template threads. If you do a quick forum search, you will find the posts.

Thanks,

Anne

10 Apr 2014, 11:53 AM
#115
icklebits avatar

icklebits

Zen Follower

Join Date:
Nov 2006
Posts:
206
Plugin Contributions:
0

Re: Responsive All Business Template

Hi,

Ages ago I installed this on a friends website. I had some issues which you helped me with earlier on in this thread. Now I'm having the same issues again on a new install.

This is what I've done:

I've installed zencart manually using filezilla. All working fine.
I then installed your template using the readme file to the letter.
The install sql patch installed fine. However, the business sql patch gave me a white page with an error message. There was no about sql patch to install.
I have the activate option (didn't have that before). However, the last option on the Configuration menu is ez-pages settings. I don't have the one that will let me sort out the slider.

When this happend on the other installation I fixed it purely by starting all over again and using a fresh database.

However, this time around I'm using a shop that has a well established database that I'm terrified of messing up. I'm not that technically minded.

Thanks in advance for your help

Donna

10 Apr 2014, 2:31 PM
#116
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

icklebits:

Hi,

Ages ago I installed this on a friends website. I had some issues which you helped me with earlier on in this thread. Now I'm having the same issues again on a new install.

This is what I've done:

I've installed zencart manually using filezilla. All working fine.
I then installed your template using the readme file to the letter.
The install sql patch installed fine. However, the business sql patch gave me a white page with an error message. There was no about sql patch to install.
I have the activate option (didn't have that before). However, the last option on the Configuration menu is ez-pages settings. I don't have the one that will let me sort out the slider.

When this happend on the other installation I fixed it purely by starting all over again and using a fresh database.

However, this time around I'm using a shop that has a well established database that I'm terrified of messing up. I'm not that technically minded.

Thanks in advance for your help

Donna

Check the configuration group table in your database and see which configuration group ID has been assigned. Then check the configuration table in your database and see if the template rows are there. If they are there, check to see that the configuration group ID is correct.

Thanks,

Anne

18 Apr 2014, 5:43 PM
#117
millie63 avatar

millie63

New Zenner

Join Date:
Apr 2014
Location:
London
Posts:
22
Plugin Contributions:
0

Re: Responsive All Business Template

Hi Anne
I'm really glad I found this thread, hopefully you or someone else can help. I've installed the Responsive All Business Template (it's great, many thanks for it :)
I'm having a problem to change the light blue background colour that shows up when you hover over the links in the side boxes (categories, Important Links, Bestsellers etc). I've tried to look it up in stylesheet.css but nothing I do seems to work. Can you point me to where I should be making the change pls?
Many thanks
and Happy Easter

18 Apr 2014, 6:12 PM
#118
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive All Business Template

Millie63:

Hi Anne
I'm really glad I found this thread, hopefully you or someone else can help. I've installed the Responsive All Business Template (it's great, many thanks for it :)
I'm having a problem to change the light blue background colour that shows up when you hover over the links in the side boxes (categories, Important Links, Bestsellers etc). I've tried to look it up in stylesheet.css but nothing I do seems to work. Can you point me to where I should be making the change pls?
Many thanks
and Happy Easter

Ok, no problem ;) Without seeing your site, I would recommend taking a peek in the includes/templates/responsive_all_business/css/stylesheet_betterCategoriesEZInfo.css line 8.

Thanks,

Anne

18 Apr 2014, 6:28 PM
#119
millie63 avatar

millie63

New Zenner

Join Date:
Apr 2014
Location:
London
Posts:
22
Plugin Contributions:
0

Re: Responsive All Business Template

Hi again. It's ok I found it and fixed it on the bottome line of stylesheet_betterCategoriesEzInfo.css Oops! Actually this is rather annoying as it was the editor on Cpanel that truncated the bottom part of this file, so I couldn't see it. Rather strange...

18 Apr 2014, 6:30 PM
#120
millie63 avatar

millie63

New Zenner

Join Date:
Apr 2014
Location:
London
Posts:
22
Plugin Contributions:
0

Re: Responsive All Business Template

Wow Anne! That was fast!!!! Thanks a million anyway. You really are an Easter angel!!!