Zen Cart Logo
Forums / Addon Templates / Responsive Apparel Boutique Template

Responsive Apparel Boutique Template

Views: 101,451

Results 261 to 280 of 288
11 Apr 2016, 19:57
#261
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Responsive Apparel Boutique Template

ArtRat:

I "plopped" the 1.5.5 version of the file into my live cart 1.5.1 and it didn't seem to break anything. Running with it...

Thanks for making me chew my own food! :smile: Onward, through the fog.

Ok, let me know if you run into any problems.

Thanks,

Anne

12 Apr 2016, 22:25
#262
fbroz avatar

fbroz

New Zenner

Join Date:
Mar 2008
Posts:
35
Plugin Contributions:
1

Re: Responsive Apparel Boutique Template

naczyls747:

Dear Anne,
May I know if it's possible to let "Product Description" at product listing page to be permanently shown without having to click on it to toggle it to display the details?

Thanks!

picaflor-azul:

If you read back in the thread you will find a patch that was posted to fix this.

Thanks,

Anne

For anyone else looking for this valuable information, the discussion can be found on Anne's excellent site: https://www.picaflor-azul.com/support/viewtopic.php?t=84420

It seems that to make the Description and Details sections revealed by default, make this change in /includes/templates/responsive_apparel_boutique/templates/tpl_product_info_display.php:

<script type="text/javascript">
    $(document).ready(function() {
        jQuery(".content").hide();
        //toggle the componenet with class msg_body
        jQuery(".heading").click(function()
                                 {
                                   jQuery(this).next(".content").slideToggle(500);
                                   jQuery(this).toggleClass("minus");
                                 });
      });

to

<script type="text/javascript">
    $(document).ready(function() {
        // jQuery(".content").hide();
        //toggle the componenet with class msg_body
        jQuery(".heading").click(function()
                                 {
                                   jQuery(this).next(".content").slideToggle(500);
                                   jQuery(this).toggleClass("minus");
                                 });
      });

If you would like the Details header removed, change:

<div class="layer1">
    <p class="heading"><?php echo PRODUCT_DETAILS; ?></p>
<div class="content">

to

<div class="layer1">
    <!-- <p class="heading"><?php echo PRODUCT_DETAILS; ?></p> -->
<div class="content">

If you would like the Description header removed, change:

<div class="layer1"> 
    <p class="heading"><?php echo PRODUCT_DESCRIPTION; ?></p>
<div class="content">

to

<div class="layer1"> 
    <!-- <p class="heading"><?php echo PRODUCT_DESCRIPTION; ?></p> -->
<div class="content">

Thanks Anne, please make any corrections.

16 Apr 2016, 19:48
#263
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Apparel Boutique Template

fbroz:

For anyone else looking for this valuable information, the discussion can be found on Anne's excellent site: https://www.picaflor-azul.com/support/viewtopic.php?t=84420

It seems that to make the Description and Details sections revealed by default, make this change in /includes/templates/responsive_apparel_boutique/templates/tpl_product_info_display.php:

<script type="text/javascript"> $(document).ready(function() { jQuery(".content").hide(); //toggle the componenet with class msg_body jQuery(".heading").click(function() { jQuery(this).next(".content").slideToggle(500); jQuery(this).toggleClass("minus"); }); }); ``` > > to > > ``` <script type="text/javascript"> $(document).ready(function() { // jQuery(".content").hide(); //toggle the componenet with class msg_body jQuery(".heading").click(function() { jQuery(this).next(".content").slideToggle(500); jQuery(this).toggleClass("minus"); }); }); ``` > > If you would like the Details header removed, change: > > ``` <div class="layer1"> <p class="heading"><?php echo PRODUCT_DETAILS; ?></p> <div class="content"> ``` > to > ``` <div class="layer1"> <!-- <p class="heading"><?php echo PRODUCT_DETAILS; ?></p> --> <div class="content"> ``` > > If you would like the Description header removed, change: > > ``` <div class="layer1"> <p class="heading"><?php echo PRODUCT_DESCRIPTION; ?></p> <div class="content"> ``` > to > ``` <div class="layer1"> <!-- <p class="heading"><?php echo PRODUCT_DESCRIPTION; ?></p> --> <div class="content"> ``` > > > Thanks Anne, please make any corrections. Thanks for posting ;) Thanks, Anne
23 Apr 2016, 20:21
#264
jingjo avatar

jingjo

New Zenner

Join Date:
May 2011
Posts:
29
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

Hi Anne

Thanks for the template - it looks great.

I'm installing it on v1.5.5 and I've got a piece of code showing up next to the cart icon on the header menu bar 'COUNT_CONTENTS();?> ITEM(S) - FORMAT($_SESSION['CART']->SHOW_TOTAL());?>' instead of '0 ITEM(S) - $0.00'

Do you know what I've done wrong?

Attachment 16252

23 Apr 2016, 23:49
#265
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Responsive Apparel Boutique Template

See this thread for the fix:

jingjo:

Hi Anne

Thanks for the template - it looks great.

I'm installing it on v1.5.5 and I've got a piece of code showing up next to the cart icon on the header menu bar 'COUNT_CONTENTS();?> ITEM(S) - FORMAT($_SESSION['CART']->SHOW_TOTAL());?>' instead of '0 ITEM(S) - $0.00'

Do you know what I've done wrong?

Attachment 16252

24 Apr 2016, 20:13
#266
jingjo avatar

jingjo

New Zenner

Join Date:
May 2011
Posts:
29
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

My previous problem was answered by rbarbour - thanks for a great fix!

Now on to the next... On my cart page the contents and image aren't showing. Also the 'back to shopping' 'update cart' & 'go to checkout' buttons aren't showing either. I think i've broken the template somewhere. Any suggestions on how to fix this?

Attachment 16256

25 Apr 2016, 18:13
#267
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Apparel Boutique Template

jingjo:

My previous problem was answered by rbarbour - thanks for a great fix!

Now on to the next... On my cart page the contents and image aren't showing. Also the 'back to shopping' 'update cart' & 'go to checkout' buttons aren't showing either. I think i've broken the template somewhere. Any suggestions on how to fix this?

Attachment 16256

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

Thanks,

Anne

25 Apr 2016, 21:19
#268
jingjo avatar

jingjo

New Zenner

Join Date:
May 2011
Posts:
29
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

picaflor-azul:

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

Thanks,

Anne

Hi Anne

I checked my log files and found out that tpl_shopping_cart_default.php must have been accidentally copied into my template folder. File is deleted and all is good now.

Cheers

26 Apr 2016, 03:26
#269
jingjo avatar

jingjo

New Zenner

Join Date:
May 2011
Posts:
29
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

Hi Anne

I'm having another problem with the 'Change Shipping Address' page. Two of the button_continue.gif buttons appear on the page. The button on the left doesn't go anywhere. While the one on the right goes to the checkout_shipping page. I'm thinking that the problem is not with the template but with the includes/templates/template_default/templates/tpl_checkout_shipping_address_default.php file in v1.5.5. Any thoughts about how to remove the right hand button?

Attachment 16261

03 May 2016, 19:19
#270
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Apparel Boutique Template

jingjo:

Hi Anne

I'm having another problem with the 'Change Shipping Address' page. Two of the button_continue.gif buttons appear on the page. The button on the left doesn't go anywhere. While the one on the right goes to the checkout_shipping page. I'm thinking that the problem is not with the template but with the includes/templates/template_default/templates/tpl_checkout_shipping_address_default.php file in v1.5.5. Any thoughts about how to remove the right hand button?

Attachment 16261

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

Thanks,

Anne

01 Jun 2016, 15:41
#272
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Apparel Boutique Template

jingjo:

Hi Anne

I'm looking at the product images in responsive mode on the demo site http://zenlyzen.com/responsive/index.php?main_page=index&cPath=1_4
The images art tiny. Is there anyway of making them larger?
Attachment 16323

You can make adjustments to the responsive.css to change the size. Use chrome and the web developer tools to find out which lines you need to edit.

Thanks,

Anne

28 Sep 2016, 22:41
#273
mamakitty avatar

mamakitty

New Zenner

Join Date:
Aug 2006
Location:
Denver CO
Posts:
65
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

Re: the Responsive Slides JS

  1. I would like to remove the navigation at the bottom of the slides area. Purpose is to reduce the vertical scroll of the home page. I've used the Dev Tool Kit and Chrome's dev tools and haven't found where to do what I want.

  2. I would also like to reduce the overall size of the slides container. I found div class="slidesjs-container which has the sizes set at 625px X 351.695px. My slides images are sized at 550x300 so there is not that much diffference but again, I would like the container not to be as "tall" as it is now.

TeamDoxie dot com/index.php

Dorothy

30 Sep 2016, 21:02
#274
mamakitty avatar

mamakitty

New Zenner

Join Date:
Aug 2006
Location:
Denver CO
Posts:
65
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

I did try to add nav: false to includes/templates/responsive_apparel_boutique/common/tpl_home_slider.php but that didn't work.
Dorothy

03 Oct 2016, 15:20
#275
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Apparel Boutique Template

MamaKitty:

Re: the Responsive Slides JS

  1. I would like to remove the navigation at the bottom of the slides area. Purpose is to reduce the vertical scroll of the home page. I've used the Dev Tool Kit and Chrome's dev tools and haven't found where to do what I want.

  2. I would also like to reduce the overall size of the slides container. I found div class="slidesjs-container which has the sizes set at 625px X 351.695px. My slides images are sized at 550x300 so there is not that much diffference but again, I would like the container not to be as "tall" as it is now.

TeamDoxie dot com/index.php

Dorothy

I am sorry, but I do not see the template installed on that url. If you post a link to the site I can take a look.

Thanks,

Anne

03 Oct 2016, 16:47
#276
mamakitty avatar

mamakitty

New Zenner

Join Date:
Aug 2006
Location:
Denver CO
Posts:
65
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

TeamDoxie.com/index.php You need to use the index.php.

Dorothy

12 Oct 2016, 14:28
#277
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Apparel Boutique Template

MamaKitty:

TeamDoxie.com/index.php You need to use the index.php.

Dorothy

Add a display:none; to line 16 and 22 of the stylesheet_slides.css

Thanks,

Anne

15 Oct 2016, 20:29
#278
mamakitty avatar

mamakitty

New Zenner

Join Date:
Aug 2006
Location:
Denver CO
Posts:
65
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

Thanks, Anne

Those two lines took care of the page nav circles and the prev and next arrows. Now just have to play around with that file to find how to get rid of the start/stop graphics.

Dorothy

31 Jan 2017, 16:56
#279
lindsey80 avatar

lindsey80

New Zenner

Join Date:
Apr 2010
Location:
Essex, UK
Posts:
77
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

Hi I am having issues with my layout. It seems like its to do with the responsive function turned on or off. Please see my screenshots for more details

Thanks for your help in advance.

31 Jan 2017, 21:17
#280
lindsey80 avatar

lindsey80

New Zenner

Join Date:
Apr 2010
Location:
Essex, UK
Posts:
77
Plugin Contributions:
0

Re: Responsive Apparel Boutique Template

lindsey80:

Hi I am having issues with my layout. It seems like its to do with the responsive function turned on or off. Please see my screenshots for more details

Attachment 16921
Thanks for your help in advance.

sorry, don't think attachment showed up