magento create a very special configurable product - football team - magento

I need on Magento 1.7 to let the user choose attributes for each quantity in a configurable product.
The Example:
I want to order 11 football shirt for my football team.
i need to select size and write the player's name for each shirt in the product page like the image above
If the solution need to set "11" as default quantity, there's no problem
What i need is to have attributes repeated 11 time as quantity.
Is it possible?
How to?

this can easily be done in your theme; use the file
app/design/frontend/base/default/template/catalog/product/view/type/options/configurable.phtml
Hook in at
foreach($_attributes as $_attribute):
and change how the item is displayed (display it several times, for example).
Afterwards, you need to modify the javascript-function below that alle products are added to cart. You can find an example how to mass-add products here:
http://www.magentocommerce.com/boards/viewthread/9797/
Ask if you need more advice.

Related

Configurable products for different product sizes and price

I am trying to make a store for car care chemicals in Magento for online buyers and company distributors.
Each chemical has a size option - 0.5 liters, 5 liters, 207 liters
And the above options have price difference depending upon the customer is a normal buyer or a distributor.
I have made a configurable product, but the price in the
"Super product attributes configuration" overrides the Group pricing in the simple products.
Can somebody please suggest the right way?
You have to create a attribute "size" as dropdown with all possible sizes.
When you add the product you have to choose one of them.
Magento will not take into the account the simple products' price of a configurable one. Simple products' prices are ignored. if you want to sell a simple product X having price $120 and a simple product B ($130) then set configurable product's price to $120 and add products you want to associate with this configurable product. After adding them click on 'Associated Products' tab which opens a block named Super product attributes configuration, which contains options and price differences and set the prices accordingly as described in attached image.
Moreover There's an extension that allows you to use simple product prices instead of price differences Since it's free extension. The extension is "Simple Configurable Products(SCP)".

Magento Qty Increments

Basically all my products in magento are single units, however everything is sold in packs say 10 units to a pack. Theres the Enable Qty Increments on the product options in Magento and then you enter the Qty increments, which works without problems. However by default when you go to the product on the front end, hit add to cart it tries to add just 1 unit not the minimum of 10 is there a way, when you hit add to cart it adds the minimum qty of 10 rather than 1?
I know this is a while after you posted the problem & you probably have a fix already..
We are looking at this problem ourselves.. & have an issue with Bundled products not allowing us to add more than one instance of the product on each page.. hard to explain..
What I am thinking to do is remove the quantity box from the actual product.. Customers can select in a drop down if they want packs of 5 - 10 - or singles.. if they require odd numbers they can adjust the number still in the checkout..
does that all make sense..
Add to cart & Qty box are on the products.phtml page i think... I am still looking at all my options though.. Setting up a selection of Grouped products at the moment..
Just a passing suggestion ;)
Edit.. // What we have done as a final solution.. Use // Promotions /
Shopping Cart Rules.. You can make specific rules for Bulk categories
& Products in set numbers.. This will be a lot easier for our staff to
manage.. just drop requested products into a category called "bulk"
..wish I had thought of it earlier :)
In Admin panel go to
System >> Configuration >> Catalog >> Inventory >> Product Stock Options and set Qty Increments to what you want.
Magento provides Bundled Products to achieve such sell of products in packets.
Create a Bundle Product and follow these steps at Bundled Items tab in product edit form
Add New Option
Provide Title, select input type checkbox or multiselect and set Is Required to Yes
Search your product in below grid and add this product providing "Qty to add" to 10
Add selected product to option and then save product.

magento link product to specific store view

I have 6 languages defined using store views.
i have 6 simple products - one product for each language.
I did not create those products using attributes or configurable product or so, since this is the main product in my store and i would like to promote the product in each language separately.
now, I try to link a productX to default store view X (means if someone clicks to view that product, he will move to the store view with the language of the product.
example:
- store view_EN
- store view_IT
product X_EN
product X_IT
being in store view_EN, clicking product x_IT should redirect to store view_IT/product X_IT...
is that possible with little tweaks only?
thanks!
First of all, you don't need 6 different products, one for each language. You can have the same product, and translate the text fields to all the languages (like name, description, short description, ...).
You can do that by changing the scope from the top-left dropdown on the product edit page, in admin.
Now here is how you can get a product url for a specific store. Let's say that the product id is $productId, and the store id is $storeId
$url = Mage::getModel('catalog/product')->setStoreId($storeId)->load($productId)->getProductUrl()

Magento :1.7 - Same products have different prices based on magento

Scenario -
I have a single domain and four sub-domains . I want to sell same products on all sub-domains but with different price for same product. Is it possible in magento ?
If Yes, Kindly provide the solution .
Thanks,
Abhishek
Yes it's possible. The Price attribute is website-scoped attribute. So you should create 4 websites (for each subdomain), and you'll have one set of products for each of the Websites, and possibility to assign different prices for each website.
To turn this feature on, open your admin panel, go to System/Configuration/Catalog, open Price tab and set Catalog Price Scope to Website.
Yes it's possible. The Price attribute set for same product for every website . So you should create 4 websites (for each subdomain), and you'll have one set of products for each of the Websites, and possibility to assign different prices for each website.
Step 1. In the Admin panel, goto System, Configuration, Catalog, then Price.
Step 2. Change Price from Global to Website.
Step 3. You should see “Website” on the price page for the product now, instead of “Global”.
Step 4. For each product you want to set different prices on – select the product, then in the upper left corner you will see the option to chose your store view. Select the first store
Step 5. Set the price for the first store and click “Save and Continue Editing”
Step 6. Select the store view for your second store and set the price for that store
Step 7. Repeat step 6 until all of your store have the prices you want.

Magento - show price range of simple products

Is it possible in Magento to show the price range of simple products as opposed to the price set for the main configurable product.
For example, say we have a t shirt, configurable by size and each with a different price. It doesnt make sense to show a fixed price on the catalog page does it?
I would expect to see something similar to Prices from £3.99.
Does anyone know if this is possible without any custom modification.
I know, it is NOT good solution but worth to try.
Create simple products of each t-shirt based size then group this products like "Polo T-Shirt". Users will see only "Polo T-Shirt" but they can choose what they want from drop-down list.

Resources