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

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

Related

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.

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

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

Paypal One fixed Shiping fee with mutiple items

I'm in the process of integrating a site with PayPal, I have added the HTML code (see example below) for each of the products. The only problem is if a customer adds one or more different items to their basket they are charge double the shipping, for example if I got item A the p&p is £4.95 if I then get another item lets say item B the shipping is now £9.90... I'm going to be sending all orders via one package so is there a way to setup my shopping cart so the shipping is just a total of £4.95 no matter how many items the customer has added to their basket?
https://www.paypal.com/cgi-bin/webscr?business=luorders#outlook.com&cmd=_cart&add=1&shopping_url=http://www.lockersunleashed.com&currency_code=GBP&amount=7.50&item_name=Orange%20Carpet%20SKU%20LU%20C3&shipping=4.95&shipping2=1.00&country=GB
If instead of setting a shipping price for each item you let it calculate to paypal?
I know you can set it in your business account
https://developer.paypal.com/docs/classic/admin/checkout-settings/#calculating-shipping-charges-automatically

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.

Trac Advanced Reports

I have a trac report that displays how many tickets are at each stage of the workflow. Is it possible to make reports dynamic, so if a row is clicked a report for those tickets are shown.
SELECT stage,
count(status) as 'Number of Matches',
id as _id,
'[..1] Tickets Here' as link
FROM ticket
Failing that, it would be useful to have a link to another report that shows all the tickets at that stage but links are seen as text in the report.
[..1] Tickets Here
You can also make dynamic reports using wiki pages. Personally, I find that to be the easier approach most of the time.
For your purposes, you could have something like this:
== Open Tickets, By State ==
[report:4 New] ([[TicketQuery(status=new,format=count)]])\\
[report:5 Accepted] ([[TicketQuery(status=accepted,format=count)]])\\
[report:6 Code Review] ([[TicketQuery(status=codereview,format=count)]])\\
[report:7 Testing] ([[TicketQuery(status=testing,format=count)]])
This will result in output that looks like:
New (40)
Accepted (12)
Code Review (8)
Testing (17)
where the name of the state is a link to a detailed report listing all of the tickets in that state. You will need to create a report for each state and fill in the correct report numbers for the report:# links in the example.
If you are interested in viewing this information per milestone then you might do well to customise your milestone page instead of creating a separate report. This page explaining how to create custom state groupings in the milestone progress bar will be useful to you in such case.