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.