Magento migration from 1.9.1.0 to Magento 2 doesn' show product in front end - magento-1.9

I have installed Magento 1.9.1.0 with sample data, without error. After that installed magento 2x without error. Then i migrate content from 1.9.1.0 to 2x with data migration tool, and it completed. Products and almost all informations are migrated, and i can see product in Admin side. But couldn't visible for other users.It showing 'We can't find products matching the selection.'. What would be the problem???

To show the product, check if the product following options:
General->Status = Enabled
general->Visibility = Catalog,Search
Inventory->Qty > 0
Inventory->Stock Availability = In Stock
Websites = checking your site
Catgories = checking your category.
If you want checking product to subcategory, go to Catalog->Manage Categories->Select your category, open tab Display Settings and change option "Is Anchor" to "Yes". Save category

Related

Simple Products are not showing as associated in configurable products in Magento 1.9

Hope you are doing well.
I need to ask about how to set up a simple product to be able to show it to my configurable associated products.
I think I already configure all the attributes like,
visibility = not show individually
stock = in stock
price = also set
status = enable
anything I missed? Because when go to my configurable product there is nothing as Associated Products.
Any help appreciated.
Hello Quan,
To associate them
not needed:
visibilty = not show inidividually
stock = in stock
price = also set
status = enable
needed:
attribute set = the same as configurable product (check configurable product attribute in admin section)
to create a config
Beside this you need to make sure, that the attributes you want to be configurable are NOT system, "Global", input type "Dropdown" and "allowed for configurables"
to show them in frontend
Only the simple ones which are in stock and enabled are shown in frontend, might be an indexing issue?
Thanks!

update total not working on cart page for table rate shipping methods magento1.9

I have enabled table rate shipping method in magento. Now in cart page I am getting a section called Estimate Shipping and tax.
Now in this section when I am selecting a country and clicking on estimate then I get the shipping rate according to the tablerates.csv file that I have uploaded through magento admin panel in
System->Configuration->Sales->Shipping Method->Table Rates
section.Now when I select the rate and click on update total then total is not getting updated. This problem I have on my live site.
Then I installed magento on local and does the same process, here the total gets updated when I click on update total section.
Then I checked controller action for update total button. The action of the form that contains the button is
action="http://{{site-url}}/checkout/cart/estimateUpdatePost/"
Now when I compared the estimateUpdatePost action on local and live then found that content is same
Content of estimateUpdatePost action on localhost
public function estimateUpdatePostAction()
{
$code = (string) $this->getRequest()->getParam('estimate_method');
if (!empty($code)) {
$this->_getQuote()->getShippingAddress()->setShippingMethod($code)/*->collectTotals()*/->save();
}
$this->_goBack();
}
Content of estimateUpdatePost action on live
public function estimateUpdatePostAction()
{
$code = (string) $this->getRequest()->getParam('estimate_method');
if (!empty($code)) {
$this->_getQuote()->getShippingAddress()->setShippingMethod($code)/*->collectTotals()*/->save();
}
$this->_goBack();
}
Now both the function is same.I could not understand why the total is not getting updated on live. Could anyone help me proceed in right direction.
The problem was one of the modules. Enabling and disabling the modules got me know the module due to which update total was not working.

How to hide tax , shipping & handling from cart and checkout

I am using Magento version: 1.9.2.2
I want to hide tax, shipping and handling from cart and checkout page of my app but didn't get any success been trying from last two days.
Followed some solutions(links attached) from the forums and various Websites but not getting any success for this please help to find any solution for this.
links which I've followed for this:
didn't work:
https://magento.stackexchange.com/questions/31603/how-to-remove-tax-from-cart-page,
https://magento.stackexchange.com/questions/54375/how-do-i-remove-total-excl-tax-from-cart-review-page
almost done the trick but tax appeared as soon as I logged in https://magento.stackexchange.com/a/63352 ,
Worked for a short period of time tax magically reappeared after some time
http://michaelsavin.com/magento-hide-tax-summary-from-cartcheckout/
Open admin panel, go to system > configuration > sales > tax > order, Invoices, Credits Memos display settings
then set Display full Tax Summery : No

magento flat rate not working

I am trying to add flat rate for products in magento from system -> configuration -> shipping methods -> flat rate. These are the setting :
But flat rate is not appearing on front end :
Check that the cart shipping quote estimator is showing. If it is then it will only add flat rate shipping to the total if you select it after getting quote and then click 'Update Quote'.
If thats not the issue then you must have modified something either in your theme to hide, or an extension is breaking your totalling.

How to extract all configurable products (name,sku,brand,tier prices) from Magento (sql query)?

I need to extract configurable products only from magento. I need a query to perform it or model to work with configurable products.
The menu System / Import-Export of the Backoffice is designed for this purpose.
particularly the Dataflow - Profiles entry where you have a "Export all product" profile customisable/filterable with a assitant.
You can use the CSV/XML/whatever generated to generate a PDF (your call)
Try
$_productCollection = $this ->getLoadedProductCollection()
->addAttributeToFilter('type_id','configurable');
//print_r($_productCollection);
foreach($_productCollection as $product){
echo $product->getSku();
.....
}
Then pass this info into your function to create the pdf like this How to create a pdf in magento?
See more # Magento - load only configurable products