Page 27 of 29 FirstFirst ... 172526272829 LastLast
Results 261 to 270 of 288
  1. #261
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Responsive Apparel Boutique Template

    Quote Originally Posted by ArtRat View Post
    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! Onward, through the fog.
    Ok, let me know if you run into any problems.

    Thanks,

    Anne

  2. #262

    Default Re: Responsive Apparel Boutique Template

    Quote Originally Posted by naczyls747 View Post
    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!
    Quote Originally Posted by picaflor-azul View Post
    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/suppor...ic.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:

    Code:
    <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

    Code:
    <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:

    Code:
    <div class="layer1">
        <p class="heading"><?php echo PRODUCT_DETAILS; ?></p>
    <div class="content">
    to
    Code:
    <div class="layer1">
        <!-- <p class="heading"><?php echo PRODUCT_DETAILS; ?></p> -->
    <div class="content">
    If you would like the Description header removed, change:

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

    Thanks Anne, please make any corrections.

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

    Default Re: Responsive Apparel Boutique Template

    Quote Originally Posted by fbroz View Post
    For anyone else looking for this valuable information, the discussion can be found on Anne's excellent site: https://www.picaflor-azul.com/suppor...ic.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:

    Code:
    <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

    Code:
    <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:

    Code:
    <div class="layer1">
        <p class="heading"><?php echo PRODUCT_DETAILS; ?></p>
    <div class="content">
    to
    Code:
    <div class="layer1">
        <!-- <p class="heading"><?php echo PRODUCT_DETAILS; ?></p> -->
    <div class="content">
    If you would like the Description header removed, change:

    Code:
    <div class="layer1"> 
        <p class="heading"><?php echo PRODUCT_DESCRIPTION; ?></p>
    <div class="content">
    to
    Code:
    <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

  4. #264
    Join Date
    May 2011
    Posts
    29
    Plugin Contributions
    0

    Default 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?

    Click image for larger version. 

Name:	Screen Shot 2016-04-24 at 6.09.01 AM.jpg 
Views:	55 
Size:	10.8 KB 
ID:	16252
    Last edited by jingjo; 23 Apr 2016 at 09:22 PM. Reason: spelling correction

  5. #265
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Apparel Boutique Template

    See this thread for the fix:



    Quote Originally Posted by jingjo View Post
    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?

    Click image for larger version. 

Name:	Screen Shot 2016-04-24 at 6.09.01 AM.jpg 
Views:	55 
Size:	10.8 KB 
ID:	16252

  6. #266
    Join Date
    May 2011
    Posts
    29
    Plugin Contributions
    0

    Default 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?

    Click image for larger version. 

Name:	Screen Shot 2016-04-25 at 5.42.54 AM.jpg 
Views:	51 
Size:	17.3 KB 
ID:	16256

  7. #267
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Responsive Apparel Boutique Template

    Quote Originally Posted by jingjo View Post
    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?

    Click image for larger version. 

Name:	Screen Shot 2016-04-25 at 5.42.54 AM.jpg 
Views:	51 
Size:	17.3 KB 
ID:	16256
    If you post a link to your site I can take a look.

    Thanks,

    Anne

  8. #268
    Join Date
    May 2011
    Posts
    29
    Plugin Contributions
    0

    Default Re: Responsive Apparel Boutique Template

    Quote Originally Posted by picaflor-azul View Post
    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

  9. #269
    Join Date
    May 2011
    Posts
    29
    Plugin Contributions
    0

    Default 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?

    Click image for larger version. 

Name:	Screen Shot 2016-04-26 at 11.23.46 AM.jpg 
Views:	47 
Size:	21.9 KB 
ID:	16261

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

    Default Re: Responsive Apparel Boutique Template

    Quote Originally Posted by jingjo View Post
    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?

    Click image for larger version. 

Name:	Screen Shot 2016-04-26 at 11.23.46 AM.jpg 
Views:	47 
Size:	21.9 KB 
ID:	16261
    If you post a link to your site I can take a look

    Thanks,

    Anne

 

 
Page 27 of 29 FirstFirst ... 172526272829 LastLast

Similar Threads

  1. Apparel Boutique Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 431
    Last Post: 8 Dec 2016, 04:27 PM
  2. Replies: 3
    Last Post: 10 Jun 2014, 09:45 PM
  3. Modify or change template from Apparel Boutique to Lite Orange?
    By sweetaloma in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 13 Dec 2012, 07:34 PM
  4. Replies: 7
    Last Post: 14 Jun 2012, 04:15 PM
  5. Replies: 1
    Last Post: 18 Jan 2011, 04:08 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