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

Responsive All Business Template

Views: 103,480

Results 141 to 160 of 393
4 Jul 2014, 10:39 PM
#141
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Responsive All Business Template

Hi Anne,

I would like to remove the slideshow navigation controls so that the main page text appears right below the slides. For the life of me, I can't figure out how to do this. Can you help? Thanks.

Russ

5 Jul 2014, 1:55 PM
#142
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

RescoCCC:

Hi Anne,

I would like to remove the slideshow navigation controls so that the main page text appears right below the slides. For the life of me, I can't figure out how to do this. Can you help? Thanks.

Russ

If you post a link to your site I can take a look ;)

Thanks,

Anne

7 Jul 2014, 6:48 PM
#143
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

It's currently in my sand box here:

http://www.rescoccc.net/zen/store2/

7 Jul 2014, 8:24 PM
#144
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

Okay, I figured out how to remove the controls. For anybody interested, edit includes/templates/template_name/common/tpl_home_slider.php.

Find:

<script type="text/javascript"> $(function() { $('#slides').slidesjs({ width: 590, height: 332, play: { active: true, auto: true, interval: '<?php echo RAB_SLIDES_PLAY ?>', pauseOnHover: true, restartDelay: 2500 } }); }); </script>

Change to:

<script type="text/javascript"> $(function() { $('#slides').slidesjs({ width: 590, height: 332, navigation:false, pagination: false, play: { active: false, auto: true, interval: '<?php echo RAB_SLIDES_PLAY ?>', pauseOnHover: true, restartDelay: 2500 } }); }); </script>

BUT, I still have a big gap between the slide and the home page text. Any ideas?

7 Jul 2014, 8:31 PM
#145
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

Figured that one out too. It was just a simple matter of changing the height. Duh!

7 Jul 2014, 8:37 PM
#146
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

PS: Thanks, Anne, for another fantastic template!

7 Jul 2014, 9:50 PM
#147
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

And, another question please. I would like to add more slides than just the five. I edited tpl_home_slider.php to add this additional line:

<?php if (SHOW_BANNERS_GROUP_SETRAB6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SETRAB6)) { if ($banner->RecordCount() > 0) { echo zen_display_banner('static', $banner); } } ?>

Then I added banner group rabslide6 with another slide image. No joy. Is there another file I need to edit? Thanks.

8 Jul 2014, 12:36 AM
#148
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

RescoCCC:

And, another question please. I would like to add more slides than just the five. I edited tpl_home_slider.php to add this additional line:

<?php if (SHOW_BANNERS_GROUP_SETRAB6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SETRAB6)) { if ($banner->RecordCount() > 0) { echo zen_display_banner('static', $banner); } } ?>

Then I added banner group rabslide6 with another slide image. No joy. Is there another file I need to edit? Thanks.

I am happy that you like the template ;)

If you do a forum search for how to add a new banner group, there are great step by step explanations ;) The easiest way would be to just hard code the new slide and add this to the tpl_home_slider.php:

<li><a href="your url"><img src="your image name"   alt="your alt name" /></a></li>	

T'hanks,

Anne

8 Jul 2014, 1:42 AM
#149
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

Thanks, Anne, but I would like my client to have the ability to add a slide using banner manager. Any way to do that?

8 Jul 2014, 12:28 PM
#150
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

RescoCCC:

Thanks, Anne, but I would like my client to have the ability to add a slide using banner manager. Any way to do that?

Yes, there are a few different posts with complete instructions for adding a new banner group ;) In addition to adding the code to the pho files, you will need to add in the constant to the database configuration table.

Thanks,

Anne

8 Jul 2014, 5:46 PM
#151
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

Got it! Quick edit to the database plus the addition to tpl_home_slider.php, and now more banners. Thanks, Anne!

8 Jul 2014, 6:03 PM
#152
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

RescoCCC:

Got it! Quick edit to the database plus the addition to tpl_home_slider.php, and now more banners. Thanks, Anne!

I am happy that you figured it out ;)

Thanks,

Anne

21 Jul 2014, 6:46 PM
#153
rescoccc avatar

rescoccc

Totally Zenned

Join Date:
May 2010
Location:
WA State
Posts:
1,700
Plugin Contributions:
2

Re: Responsive All Business Template

A quick note for those who are customizing and renaming the template. In includes/templates/your_template_name/templates/tpl_modules_mobile_categories_tabs.php you'll find this line:

<script type="text/javascript" src="includes/templates/responsive_all_business/jscript/script.js"></script>

You need to change responsive_all_business to whatever you named your customized version. Otherwise, the mobile categories menu won't work correctly.

14 Aug 2014, 6:08 PM
#154
asun avatar

asun

New Zenner

Join Date:
Aug 2014
Location:
Canada
Posts:
3
Plugin Contributions:
0

Re: Responsive All Business Template

picaflor-azul:

Yes, the template only has english natively. If you want to use the template with another language you need to copy all of the template language files to your new language and then translate them.

Thanks,

Anne

I can't seem to find the language button/selector in mobile page. Can someone tell me what I did wrong?

14 Aug 2014, 6:17 PM
#155
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

asun:

I can't seem to find the language button/selector in mobile page. Can someone tell me what I did wrong?

They are turned off by default. If you want them to show you need to remove the display:none; in responsive.css line 92 and 162.

Thanks,

Anne

14 Aug 2014, 6:51 PM
#156
asun avatar

asun

New Zenner

Join Date:
Aug 2014
Location:
Canada
Posts:
3
Plugin Contributions:
0

Re: Responsive All Business Template

picaflor-azul:

They are turned off by default. If you want them to show you need to remove the display:none; in responsive.css line 92 and 162.

Thanks,

Anne

Thanks Anne for the tips. What should I replace the "display:none" with if I only want to show the language selector and not currency selector?

14 Aug 2014, 7:04 PM
#157
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

Nothing. Just turn the box off in the layout boxes controller at min-width.

Thanks,

Anne

17 Aug 2014, 5:47 PM
#158
asun avatar

asun

New Zenner

Join Date:
Aug 2014
Location:
Canada
Posts:
3
Plugin Contributions:
0

Re: Responsive All Business Template

Thanks a lot for the help Anne.

I have another question regarding sold out status. Is it just me or the "Show Sold Out Image in place of Add to Cart" does not work with this template? Is it missing "Sold Out" image?

18 Sep 2014, 11:35 AM
#159
joyjoy avatar

joyjoy

Totally Zenned

Join Date:
Sep 2010
Posts:
611
Plugin Contributions:
0

Re: Responsive All Business Template

Hi Annie, thanks so much for your wonderful contributions! You are very talented! I just had a quick question about the product details pages. I know that when you view the mobile versions it creates hidden drop down boxes for the additional details. I could have sworn it operated the same way on the full site, but I've been tinkering with it all day and I could be getting mixed up. Should the full site version also have the drop down boxes? Please let me know, i may have to restore to a previous backup if I inadvertently affected that with another plug in.

Thank you again.

18 Sep 2014, 1:56 PM
#160
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

asun:

Thanks a lot for the help Anne.

I have another question regarding sold out status. Is it just me or the "Show Sold Out Image in place of Add to Cart" does not work with this template? Is it missing "Sold Out" image?

All native functionality works, but you might have to create your own image.

Thanks,

Anne