How to user can create its own gift hamper and can add product to that hamper - magento-1.7

I am developing a new concept magento store with a new functionality of creating gift hamper..i am using bundle product in this..
Now i want to create a option on frontend say "Create hamper".in this option user can create a hamper/basket with any name using textbox..after creating this hamper user can add products in cart under its gift hamper..
and also on cart page i want to show seprate hamper with its product.
Can somebody help me out in this new concept.
Thanks in advance..

Hello Finally i find out the sollution, its not the exact sollution but very helpful for my new concept,
i can get some help by using & modifying these extension..
have a look on below extension & its respective demo.
http://51328012.demo.aitoc.com/magento-red-furniture-set.html
http://www.magebuzz.com/shopping-list.html
http://www.magentocommerce.com/magento-connect/shopping-list.html
http://www.aitoc.com/en/magentomods_gift_registry.html
http://www.aitoc.com/en/magentomods_recurring_purchase_assistant.html#demo

Related

Shopify custom post?

I want to start using Shopify but I still need to know if it is possible to create custom post type, a bit like wordpress : a new button on the admin panel where there is product, orders, customers, etc, where I could put a whole new kind of posts, for blogging or image gallery.
Thanks,
Will
You can't customise the administration panel of Shopify, with adding new buttons, for example. The only way is creating a browser extension as Shopify FD. This extension add new buttons on the interface and other improvements.
You can add new "custom post type" as wordpress but it works different, looks at the "building themes" shopify section.
You are free to create blogs, and add articles to them, and you can create as many image galleries as you want. No limits to Shopify in that respect. Have fun!

How to redirect a associated product to its configurable product

I am using Magento 1.9.2.1 and I am using the native swatches option. I am trying to only show the associated products on the catalog page and not the configurable product. But I am hoping that by clicking on any of the associated products, it would take the customer to the configurable product.
So lets say that I am selling a cap that has a red and brown option. I want the catalog to show the red simple product and the brown simple product. But when the customer clicks on either of the simple products, it will take them to the configurable product and they can select a color there instead.
Is there a easy way to do this?
I just found an extension that works
https://github.com/Mestrona/Mestrona_ForwardToConfigurable
I'm using JRD Redirect Simple to Parent for exactly this. I tried Mestrona as well, but it sets the URL to that of the simple product, which is a problem for bookmarking and the like when the user then changes up the configuration. JRD sets the URL to that of the parent and my plan is to then add a query string so that if the URL is bookmarked, I can route it to the same configured product.

Woocommerce how to change the URL before proceeding to checkout

I need to capture some information for a particular product category.
I am thinking is there a way I can change the proceed to checkout link to go to a custom URL (which will be a booking form with an action of going to the checkout page on submit) if the product category is in the cart.
I am a developer but in Java so do not know the structure and hooks very well but am sure I can get it together if
a) it is possible.
B) someone can help me which files to modify.
Thanks guys
I have fixed this by adding a filter on checkout:
add_filter('woocommerce_get_checkout_url', 'booking_redirect_checkout');

Adding new page to Admin Panel in Magento

I am developing an e-commerce website and I need to customize the database. I want to add some tables into the database and records entry should be done from the Magento Admin Panel, eg:-
Like as we click Add New Product under Manage Products from Magento Admin Panel, whatever data we provide there like, name, weight, description, sku, etc, it is entered to the respective database table automatically.
Now, let’s say I want three more tables to be created in the database: Brand(brand_id, brand_name, brand_desc...), Brand_loc(brand_id, brand_loc_id, brand_address, brand_city, brand_state...), Product(prod_id, brand_id, brand_loc_id, prod_name, prod_weight....).
So, I want the above tables’ attributes to be shown in Magento Admin Panel and as I enter the data from Magento Admin Panel, it should be entered to the respective tables in the database like I explained of Add New Product above.
Can anyone please help me on the above issue....
Thanks.
I will proceed as follows :
add a event observer in my module so that can be called once a product is saved, there are various observers in magento for before and after events.
when a product is saved i will add my code of saving data into custom tables in the observer function.
tutorial to add product after observer is here :
http://snipplr.com/view/56959/
As per a magento developer i would advice to create a complete module doing as said above, and also create pages so that admin can edit/delete brands in your case.

How to add new fields in cart of VirtueMart (Joomla!)

I am working on joomla and using joomla VirtueMart component.I created new fields in product detail page like color and size (drop down), Now I want to add that POST value (ex. $_POST["cmbColor"]) in shopping cart process and finally to be saved in database of VirtueMart.Please help me how to add these fields in cart.
Did you use the attribute system to add the optional color and size? Using either child products or attributes will get the options to show in the cart and saved on a sale. The VM documentation is pretty good on this topic, you can find how to use attributes here -
http://virtuemart.net/documentation/User_Manual/Product_Attributes.html