Re: Responsive Apparel Boutique Template
Quote:
Originally Posted by
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
Re: Responsive Apparel Boutique Template
Quote:
Originally Posted by
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!
Quote:
Originally Posted by
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/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.
Re: Responsive Apparel Boutique Template
Quote:
Originally Posted by
fbroz
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
1 Attachment(s)
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
Re: Responsive Apparel Boutique Template
See this thread for the fix:
Quote:
Originally Posted by
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
1 Attachment(s)
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
Re: Responsive Apparel Boutique Template
Quote:
Originally Posted by
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
Re: Responsive Apparel Boutique Template
Quote:
Originally Posted by
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
1 Attachment(s)
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
Re: Responsive Apparel Boutique Template
Quote:
Originally Posted by
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