Questions tagged [configurable]

161 questions
3
votes
2 answers

Magento - Add configurable product option surcharge to tier pricing

When I set up configurable products and they have options that include surcharges (i.e. the 2XL costs +$2.00) and I select the option with the surcharge, the price itself updates, however, the tier pricing associated with that product does not. So,…
mattbryanswan
  • 217
  • 5
  • 22
3
votes
2 answers

Rx-Java: Creating a configurable Observable

I'm new to RxJava, and I am wondering how I can create a configurable Observable? Let's imagine I could write a DB-to-DB transfer like this: srcDb.getObservable(Bean.class) .sql(selectSql) .params(selectParams) .subscribe( …
3
votes
2 answers

.net configurable business error messages

I need to implement some kind of solution such that in our business logic layer when certain conditions are met an error message is returned. That error message should be configurable either in a file or table that can be edited at run time if…
Daniel Powell
  • 8,143
  • 11
  • 61
  • 108
3
votes
2 answers

@Configurable doesn't work for objects initialized in @PostConstruct methods

I'm using Spring with AspectJ via compile-time weaving to use @Configurable spring annotation for objects non-managed by container. Here is an example @Configurable-annotated object: @Configurable(autowire = Autowire.BY_TYPE) public class…
3
votes
1 answer

Magento layered navigation configurable product out of stock

I have 2 configurable products with size variations, both have three sizes, small, medium and large. In the first product, the simple product for the small size is out of stock. If i set in the layered navigation to filter by small size, this…
3
votes
1 answer

Add a simple to a configurable automatically

i´ve got a code like this: $product_config = new Mage_Catalog_Model_Product_Type_Configurable(); $product_config->setProduct($product_grouped); $assigned_products = $product_config->getUsedProducts(); So i create a new config, set the product and…
3
votes
1 answer

Magento: "Products Ordered" report - how to show child products of configurable product?

When I create a "Products Ordered" report in Magento, configurable products show up as a single product, where the sales of all child products were summed up. How can I modify this behaviour, so that - additionally - the child products are shown and…
SebiF
  • 509
  • 5
  • 16
3
votes
1 answer

Configurable product, select box 'value' field. Magento

Having a problem with getting some data out of a configurable product, basically the 'standard' drop down select menu appears to select some as normal on my product page. I'm doing something fiddly with an overlay and I'm going to be 'controlling'…
rogy
  • 440
  • 6
  • 23
2
votes
1 answer

Magmi configurable \ simple link?

Can anyone show me how to link the simple product to the configurable? I've tried to directly export and import using magmi but it becomes unlinked after imported. I can not find any info on it in here. there are post relating to it, but none of…
Vwvw Teet
  • 21
  • 1
  • 2
2
votes
1 answer

Spring 3 Compile Time Weaving Problems for Objects in jar dependency with @Configurable (using Maven)

Been googling and working on this for way too long now. Been over various stackoverflow posts as well, but still stumped on what's going on here. First off, what I want: I have a persistence jar that is used as dependency in my web project. Within…
2
votes
1 answer

How to implement user configurable web pages in a ASP.Net/AJAX web app

I need some advice to save me re-inventing the wheel. Our windows app is being redesigned as a web app [ASP.Net/AJAX dot Net 3.5 - SQL Server 2005 DB] and we are at the begining of the process. One of the requirements is that the customer should…
Liam
  • 1,267
  • 2
  • 17
  • 30
2
votes
3 answers

PHP:Magento How to show configurable product's option like grid in place of default dropdown

I want to change the default behavior of the configurable products option. By default it shows options in a dropdown box; I want to show that on a grid in place of the dropdown.
Saurabh
  • 148
  • 1
  • 10
2
votes
4 answers

what is the difference between delete an undefined property and a property which declared by const, let using delete operatorin Javascript?

Please look at the code, foo = 1; delete foo; // true Object.getOwnPropertyDescriptor(this,'foo').configurable // true var bar = 2; delete bar; // false Object.getOwnPropertyDescriptor(this,'bar').configurable // false const fooBar =…
LocV's Nest
  • 118
  • 1
  • 7
2
votes
3 answers

magento get Configurable attributes in attribute set

How can I get all configurable attributes in attribute set? I was looping all the attribute set then I want to display only its configurable attribute.
2
votes
0 answers

Adding configurable product to cart in Magento 1.8.0.0 sets wrong price

I'm trying to add multiple configurable products at once to the cart in Magento. The code I used for this is: $postData = Mage::app()->getRequest()->getPost(); $superAttributes = $postData['super_attribute']; $cart =…
1
2
3
10 11