Moving custom options box on Magento products - php

I need to move the my product options to the product info column on every product in my Magento store. To do this manually I navigate to manage products, pick a product > design > "Display Product Options in". The problem is that I have thousands of products.
I have been searching through databases in Cpanel trying to find where this option exists so that I can write a query to change it for my entire store. Can anyone point me in the right direction so I can change this option for every product at once?
Thank you I really appreciate any help!

I think the import functional will suit your needs best. Create a CSV file with sku and options_container columns and insert into the latter column value container1. Use Import All Products DataFlow profile. Should do the trick for you.

You can change it from Admin panel.Go to
Catalog->Manage Products
Select the list of the products.click Update Attributes from Action
Menu
Change the value for "Display Product Options In" and save

Related

Is there a way to export WooCommerce products without the variations?

I am migrating an e-commerce store from Shopify to WooCommerce and I don't want to lose my product reviews.
I've been asked by Stamped to produce a list of all the Shopify product IDs lined up next to their matching WooCommerce IDs.
The issue I'm having is when I export WooCommerce products it features all the variations as well.
I'm trying to find a way to export just the parent product and products without variation so I can get this overall task done.
All I can find is ways to export with variations.
Anyone found a way to deal with this?
Thanks
On the "Export Products" page in woo, the second field down lets you select which type(s) of products you export. In your case, you'll want the option for "Variable Product". "Product Variations" includes only the 'child products', allowing you to export only the variations.
The first field will let you narrow down the columns exported as well, which can speed up the export if you've got tons of variable-type products.
So, if you were to select "ID", "Type", and "Name" for columns and select "Variable Product" then your export will have the product name (or whatever identifying attribute you need) along with the ID to match up with your Shopify ID.
If when you first imported your products you included the Shopify ID as a custom meta field in woo. That could really make your task easy! Good luck!

Product is repeating on next page automatically in magento

Link of my site: http://www.classiquefurniture.com.au/index.php/
I have entered some products in this category: http://www.classiquefurniture.com.au/index.php/bookcases.html but some products are repeating automatically on 2nd page as well but thing is, the product is entered only once in backend. And some product is not displaying on any page.
Now one more strange thing: When I choose option (12 products per page) then some products are not displaying on any page but likewise when I choose (all product in one page) those products are displaying.
I don't know why this is happening. Its really surprising for me. Please help me in this matter.
A simple solution might be to enable the flat product catalog of Magento under System > Config > Catalog > Frontend After reindexing, Magento will use the flat table for the store view on product listing pages on the frontend. It might be that solves the issue already for you. If it doesn't solve your problem, try adding another sorting criteria, for example the entity_id. You can do that using an event observer for the catalog_product_collection_load_before event. ($observer->getCollection()->setOrder('entity_id', 'ASC');).

Brand and local products in single category magento

I am working on magento project where I need two tabs on category page named "brand","local" just like http://www.fashionara.com/men/tees-polos.html .Can someone please guide me how can I do that ? any help will be highly appreciated.
Thanks,
Irphan
To filter products and come with a collection using product attributes is the best way.
You create an attribute is_branded for product. While products data entry is done make sure you fill this value with Yes or No.
Now use this in your collection as filter.
make sure this attribute is configured to be filterable.As you need this in flat table.
Other option is that when flat table is being populated you populate an additional field(is_branded) so not data entry is needed.
Or when a product is being created then using some before save event observer make out whether its branded or local and populate this value so as to be saved when product is saved.

Make downloadable product link auto selected on product page Magento

Hi i have downloadable products on my site, there is a required field (a checkbox) on the product page. The customer has to select the check-box every time before they can add to cart. I want to checkbox auto selected so the customer doesn't have to check it manually.
Any suggestions on how I can do this?
You can set "Links can be purchased separately" to No to remove the checkbox:
You'll get this:
This might not be desirable if you're just looking for a way to set a default instead of forcing it.
I assume the checkbox is from a product option? Magento does not support default values for them but there is an extension for it: Magento Configurable Product Default Options Extension
It is not free but in contrast to other solutions you find on the web it works without any modification to the core.

Create a custom attribute and add it to category grid view Magento

On some of my products (not all) I need to add a drop down to select from a list of products (varying depending on product). What is the best way to implement this so it get be chosen next to "add to cart" on the category grid on front end?
I did this just before few days. You want to show dropdown of simple products for any configurable products in category page, right? Check below link it will explain you step-by-step on implementing it. Let me know if you have something different in mind.
http://www.catgento.com/adding-configurable-product-options-to-category-list-in-magento/

Categories