• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Business Catalyst Help | Manage product inventory

Explorer ,
Mar 15, 2013 Mar 15, 2013

Copy link to clipboard

Copied

This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/partner/product-inventory.html

Views

2.6K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Apr 25, 2013 Apr 25, 2013

Yes Ricky ... I got it!!!

Step1: Use this code for large_product.html

<div class="shop-product-large clear">

<div class="details">

<h1>{tag_name}</h1>

<h3 class="sale{tag_onsale}">

Price:

<span class="normalPrice">{tag_retailprice}</span>

<span class="salePrice">{tag_saleprice}</span>

</h3>

<ul>

   

    <li class="instock">In stock: <strong>{tag_instock}</strong></li>

    <li class="instock"><strong>{tag_attributes}<br />

    </strong></li>

    <li class="quantity">{tag_addtocartinputfield} {tag_addtocart,<

...

Votes

Translate

Translate
Explorer ,
Mar 15, 2013 Mar 15, 2013

Copy link to clipboard

Copied

I’m absolutely NEW in Business Catalyst so I need HELP.

I want to include “Change image according to selected attribute” into my client’s website (still under construction).

When customer select one “color-size” from the dropdown I would like the images change accordingly: http://tesonline02.businesscatalyst.com/outerwear/avatar

What I’ve done so far is:

• From the Dashboard (into Attributes Tab), I’ve assigned an image to each attribute.

• I’ve used the Example 2 above including this into the code of Layout/OnlineShop/large_product.htm and also replacing by … this didn’t work at all ….

Could you give me some guidance about which templates/layout modify, and how????

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

It looks like you figured it out. How did you do it?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

Yes Ricky ... I got it!!!

Step1: Use this code for large_product.html

<div class="shop-product-large clear">

<div class="details">

<h1>{tag_name}</h1>

<h3 class="sale{tag_onsale}">

Price:

<span class="normalPrice">{tag_retailprice}</span>

<span class="salePrice">{tag_saleprice}</span>

</h3>

<ul>

   

    <li class="instock">In stock: <strong>{tag_instock}</strong></li>

    <li class="instock"><strong>{tag_attributes}<br />

    </strong></li>

    <li class="quantity">{tag_addtocartinputfield} {tag_addtocart,<img alt="" src="/CatalystImages/shop_addtocart.png" />}</li>

</ul>

<div class="description">{tag_description}</div>

</div>

<div class="image">   {tag_largeimage}

</div>

<div class="poplets">{tag_poplets}</div>

</div>

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<script>

$(function(){

        var product = {tag_product_json};

        var attributes = {tag_attributes_json};

        var divId = "#catProdTd_"+product.productId;

        $(divId).find("select").change(function (){

                  var selected = $(this).val();

                  var option = attributes.options[selected];

                  if(option && option.image)

                     $(divId).find(".image").find("img").attr("src", option.image);

        });

});

</script>

Step2: Look at http://tesonline02.businesscatalyst.com/outerwear/avatar    as a reference

Step3 :Go to your Dashboard .... then, for each product, check the images attached for Tabs "Price"

AVATAR_Prices.png

and "Attributes" and compare with the reference AVATAR (link above) ... hope it helps.

AVATAR_Attributes01.png

AVATAR_Attributes02.png

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

Wow. You are a legend! Thanks! It seems so difficult to get BC solutions that are easy to understand. The only thing that I need to figure out now is that popup that says the item is added to the cart.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 26, 2013 Apr 26, 2013

Copy link to clipboard

Copied

This  window is okay ... just popup when ADD button is clicked.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 24, 2014 Feb 24, 2014

Copy link to clipboard

Copied

Aw man, that was incredibly helpful. Thanks a million times over!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 27, 2015 Aug 27, 2015

Copy link to clipboard

Copied

LATEST

Do you have an example that will work with radios?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 16, 2013 Sep 16, 2013

Copy link to clipboard

Copied

Is there an example you can provide, that will dynamically update/change the product price when the visitor selects a product attribute from the pulldown? Thank you very much.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines