<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : All Content - All Communities</title>
    <link>https://forums.adobe.com/</link>
    <description>All Content in Adobe Community</description>
    <language>en</language>
    <pubDate>Wed, 29 Oct 2014 13:14:20 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-10-29T13:14:20Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Showing and hiding dropdowns on product page, based on selected values</title>
      <link>https://forums.adobe.com/thread/1621368</link>
      <description>&lt;!-- [DocumentBodyStart:055683fd-3102-4a38-9f0f-2310b22081d6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like my product page to show different subsequent dropdowns based on individual dropdown values. &lt;/p&gt;&lt;p&gt;&lt;br/&gt;I've managed to achieve this via JavaScript, but I do not like how it works.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As far as I can tell, there is no proper identifier for each individual dropdown to determine which one it is, so all I can do at the moment is to rely on their order in the DOM, which is bad and makes it difficult for me to create a solution that would work for all products.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For instance, if the following is a single attribute:&lt;/p&gt;&lt;p&gt;&amp;lt;div class="catProductAttributeGroup" style="display: none;"&amp;gt;&amp;lt;div class="catProdAttributeTitle"&amp;gt;Metallic Foiling&amp;lt;/div&amp;gt;&amp;lt;div class="catProdAttributeItem"&amp;gt;&amp;lt;select&amp;gt;&amp;lt;option value=""&amp;gt;-- Please select --&amp;lt;/option&amp;gt;&amp;lt;option value="6051720"&amp;gt;Not required &amp;lt;/option&amp;gt;&amp;lt;option value="6051721"&amp;gt;Foil ONE side + &amp;pound;45&amp;lt;/option&amp;gt;&amp;lt;option value="6051722"&amp;gt;Foiling BOTH sides + &amp;pound;75&amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like the outer-most div to have some sort of html attribute that holds the product attribute id. Something like, data-attribute-id="XXXXXXX". Is that possible?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's what I have up to this point:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I use {tag_attributes_json}, {tag_product_json} and {tag_currency} to get these values into javascript on page load, so I can use them later.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;Then, I hook to change events of the drodpowns I have and then toggle their visibility based on which ones are selected. I rely on the jequery ':eq(n)' selector to achieve this, which I do not like. Is there an option for the {tag_attributes} helper which would make it add some extra information (such as attribute ID on the dropdown) on the generated HTML?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All of this works initially, but If I then 'Add to cart', the product element get's ajax-reloaded and the events are suddenly unhooked, so it doesn't work anymore. For that one, there are two options:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. I could hook to an event that triggers once the product has been added to cart and the page is ready again. &lt;strong&gt;Is there such an event?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;2. I could implement my own add to cart using bcInternals.shop.addToCart. I tried doing this, but I have two problems with it.&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;a. addToCart seems to add my selection twice, for some reason.&lt;strong&gt; Any ideas what I might be doing wrong?&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;b. the cart info in&amp;nbsp; the top right corner doesn't refresh. it seems it tries to refresh, but there's some sort of access error in the script. This part is not yet fully added to the page, but there's a function that would do the adding to cart at the bottom of the bigger script block. &lt;strong&gt;Am I using the built in addToCart function incorrectly?&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px; padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is the page I have the partially implemented functionality added on:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.afterhourscreativestudio.com/business-cards/matt-laminated-business-cards" rel="nofollow"&gt;Matt Laminated Business Cards&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The scripts are currently embedded inside the HTML. Once I have it properly implemented, I'd like to extract it into a separate file. Search for "&lt;span style="color: #222222; font-family: Consolas, 'Lucida Console', monospace; font-size: 12px;"&gt;$productAttributesElement" &lt;span style="font-family: arial, helvetica, sans-serif;"&gt;to find the block with the functionality and for&lt;/span&gt; "productInfo" &lt;span style="font-family: arial, helvetica, sans-serif;"&gt;to find the part where I store the product data with the _json tags.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:055683fd-3102-4a38-9f0f-2310b22081d6] --&gt;&lt;img src='/beacon?t=1415884512063' /&gt;</description>
      <pubDate>Wed, 29 Oct 2014 13:14:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1621368</guid>
      <dc:date>2014-10-29T13:14:20Z</dc:date>
      <clearspace:dateToText>19 hours 4 minutes ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Adjusting attribute costs based on quantity</title>
      <link>https://forums.adobe.com/thread/1611276</link>
      <description>&lt;!-- [DocumentBodyStart:e1ce9e28-47a5-4419-9c5b-e92d8c3fbc7e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is it possible to adjust attribute costs based on the quantity of a product? &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example, if the product was a hat, and there was an embroidery option as an attribute for an additional &amp;pound;5, is there a way to make that attribute &amp;pound;8 if the customer selects 2 hats, and &amp;pound;10 if the customer selects 3 and so on?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e1ce9e28-47a5-4419-9c5b-e92d8c3fbc7e] --&gt;</description>
      <pubDate>Sat, 18 Oct 2014 22:22:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1611276</guid>
      <dc:date>2014-10-18T22:22:46Z</dc:date>
      <clearspace:dateToText>3 weeks 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Stock levels going down even when an order is cancelled during checkout?</title>
      <link>https://forums.adobe.com/thread/1549993</link>
      <description>&lt;!-- [DocumentBodyStart:c80b1067-5409-49b6-8a5c-5bbc49e54be3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi guys,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've been testing out the checkout and have noticed the stock levels are going down even though I'm abandoning the payment when it's processed through to PayPal. I'm used PayPal standard so no gateways. Any idea how I can ensure stock levels only go down when a product is ordered and the payment is actually completed?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c80b1067-5409-49b6-8a5c-5bbc49e54be3] --&gt;</description>
      <pubDate>Sun, 17 Aug 2014 21:52:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1549993</guid>
      <dc:date>2014-08-17T21:52:10Z</dc:date>
      <clearspace:dateToText>2 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>{tag_relatedproducts} as a UL instead of a table?</title>
      <link>https://forums.adobe.com/thread/1472314</link>
      <description>&lt;!-- [DocumentBodyStart:1d09eb1f-e9a0-4ff9-9a8c-f325e9d94fcd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is there a way to have {tag_relatedproducts} appear as a UL rather than as a table? &lt;span aria-label="Confused" class="emoticon-inline emoticon_confused" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1d09eb1f-e9a0-4ff9-9a8c-f325e9d94fcd] --&gt;</description>
      <pubDate>Sun, 11 May 2014 15:17:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1472314</guid>
      <dc:date>2014-05-11T15:17:27Z</dc:date>
      <clearspace:dateToText>6 months 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Making catalog products responsive</title>
      <link>https://forums.adobe.com/thread/1469905</link>
      <description>&lt;!-- [DocumentBodyStart:2eecc315-58f5-4456-b521-5f0b21f2a892] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;Hi guys, I'm building a BC site with Bootstrap 3, but I'm stuck trying to find a way to get the products in a catalog to stack on smaller devices since they're generated in a table. Is there a way to do this?&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;Also, is there a way to make catalogs available to everyone, but force a customer to login prior to checking out?&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;Peter&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2eecc315-58f5-4456-b521-5f0b21f2a892] --&gt;</description>
      <pubDate>Thu, 08 May 2014 21:10:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1469905</guid>
      <dc:date>2014-05-08T21:10:49Z</dc:date>
      <clearspace:dateToText>6 months 4 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>3D text won't render with environment texture loaded?</title>
      <link>https://forums.adobe.com/thread/1394188</link>
      <description>&lt;!-- [DocumentBodyStart:592616e3-fc10-48be-908e-db48e65179fa] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi guys,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm using Photoshop CC and for some reason my 3D text won't render when I load a new texture in the environment. When a texture is loaded I hit render and it flashes once then stops. If I remove the texture it renders fine. Adding the same texture to the normal section, rather than environment also renders fine. Any ideas on what could be causing this to happen in the environment?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Pete&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:592616e3-fc10-48be-908e-db48e65179fa] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">photoshop</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">problem</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">render</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">environment</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">texture</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cc</category>
      <pubDate>Thu, 30 Jan 2014 23:18:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1394188</guid>
      <dc:date>2014-01-30T23:18:01Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Blog category and archive js path/conflict issue..</title>
      <link>https://forums.adobe.com/thread/1377348</link>
      <description>&lt;!-- [DocumentBodyStart:2b526018-7aec-4920-a7e0-3b087d19c02d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi guys,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My main menu isn't functioning when accessed from blog categories or the blog archive. My best guess is it's a js path or conflict issue but since im new to all this im not sure how to fix it. Would someone with some experience be able to point me in the right direction while I still have some hair left? &lt;span aria-label="Laugh" class="emoticon-inline emoticon_laugh" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Pete&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2b526018-7aec-4920-a7e0-3b087d19c02d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">problem</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">blog</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">business_catalyst</category>
      <pubDate>Sat, 11 Jan 2014 22:46:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1377348</guid>
      <dc:date>2014-01-11T22:46:39Z</dc:date>
      <clearspace:dateToText>10 months 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Path issue leaving me unable to add blog post content in design view</title>
      <link>https://forums.adobe.com/thread/1255656</link>
      <description>&lt;!-- [DocumentBodyStart:e5c8e71f-761b-4665-aaeb-c84c2fe99ebd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi guys,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am unable to add blog post content in design view when a template is applied to my blog. BC support have told me they fixed the problem by making minor changes to the paths of the css and javascript files and then told me to post on here for the solution.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When I call the files using &amp;lt;link rel="stylesheet" href="/css/custom.css" /&amp;gt; everything displays perfectly but in BC I can't add blog post content in design view. I can edit in html but this isn't ideal for clients to update the blog.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If I change the paths to &amp;lt;link rel="stylesheet" href="css/custom.css" /&amp;gt; it fixes the problem and I can then edit blog content in design view but all blog pages that are in folders display incorrectly. Only the main blog page display properly.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm sure the answer is simple but I can't find it so any help would be greatly appreciated. Thanks &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Pete&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e5c8e71f-761b-4665-aaeb-c84c2fe99ebd] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">template</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">paths</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">business_catalyst</category>
      <pubDate>Tue, 16 Jul 2013 10:19:59 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1255656</guid>
      <dc:date>2013-07-16T10:19:59Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

