Log in to your Magento admin panel then go to System -> Configuration->General. From the Country option tab you can see there is an option "Postal code is optional for the following countries" Select the country which you want to Optional/Not validate. then click on save config to save your settings.
Iam a Workforce management analyst in Firstsource Solutions Ltd in Bengaluru. As a WFM Analyst, I am the responsible to check and create each and evey schedule assigned in the operations for the business line. This blog explains about Magento only.
Magento Tutorial How to install a Magento Theme
To know the briefly explanation with visuals and pictures please go to this url.
https://www.youtube.com/watch?v=f3vDmslmITY
I hope it will help you.
https://www.youtube.com/watch?v=f3vDmslmITY
I hope it will help you.
Custom Options Set Price to "0" in Magento 1.7 – The Fix
I’m working on a side project with Magento… There is a bug in 1.7
where when you use custom options, and your theme doesn’t include it’s
own options.phtml file, the price will set to $0 (zero) when a user
selects the price.
A bunch of forum posts have people talking about the problem. Basically it’s a silly bug in the javascript in options.phtml.
Basically, if your theme doesn’t have that options file in it’s theme directory, then magento looks like it defaults to the base‘s folder and includes the “default” options.phtml.
Here is the fix. I hope Magento includes it in the next Magento release!
Line 123 of options.phtml in
app/design/frontend/base/default/template/catalog/product/view/
Right now is
A bunch of forum posts have people talking about the problem. Basically it’s a silly bug in the javascript in options.phtml.
Basically, if your theme doesn’t have that options file in it’s theme directory, then magento looks like it defaults to the base‘s folder and includes the “default” options.phtml.
Here is the fix. I hope Magento includes it in the next Magento release!
Line 123 of options.phtml in
app/design/frontend/base/default/template/catalog/product/view/
Right now is
price += parseFloat(config[optionId][element.getValue()]);
Should be
price += parseFloat(config[optionId][element.getValue()].price);
Basically the code was trying to convert a javascript Object to a float. Making the price 0.
Magento Search Within Current Top Level Category
For this purpose please follow this url.
http://edmondscommerce.github.io/magento/magento-search-within-current-top-level-category.html
Hope this will help to you.
http://edmondscommerce.github.io/magento/magento-search-within-current-top-level-category.html
Hope this will help to you.
Magento website loading speed is very slow
1.Combine JS and CSS files
Note: after made this change, sometimes it show effect on entire website. In this case, please revert back the settings to "No"
2. Use Magento’s Compilation feature. It’s reported to give you a 25%-50% performance boost: System > Config. > Tools > Compilation.
Note: after made this change, sometimes it show effect on entire website. In this case, follow this url
http://tejabhagavan.blogspot.in/2016/01/when-i-enabling-compilation-in-magento.html
3.Enable flat catalog :
Go to System > Configuration > Catalog >Frontend,
change Use Flat Catalog Category to YES. If desired, under Frontend, change Use Flat Catalog Product to YES. Clear the cache.
4. Enabled magento caching
5. MySQL Query caching
6. Enable Gzip Compression
7. Disable any unused modules
8. Disable the Magento log
9. Optimise your images
(i) Magento admin -> System Configuration -> Developer ->
Under “Javascript Settings”,
change “Merge Javascript Files” to YES.
(ii)Magento admin -> System Configuration -> Developer ->
Under “CSS Settings”,
Change “Merge CSS Files” to YES
Note: after made this change, sometimes it show effect on entire website. In this case, please revert back the settings to "No"
2. Use Magento’s Compilation feature. It’s reported to give you a 25%-50% performance boost: System > Config. > Tools > Compilation.
Note: after made this change, sometimes it show effect on entire website. In this case, follow this url
http://tejabhagavan.blogspot.in/2016/01/when-i-enabling-compilation-in-magento.html
3.Enable flat catalog :
Go to System > Configuration > Catalog >Frontend,
change Use Flat Catalog Category to YES. If desired, under Frontend, change Use Flat Catalog Product to YES. Clear the cache.
4. Enabled magento caching
5. MySQL Query caching
6. Enable Gzip Compression
7. Disable any unused modules
8. Disable the Magento log
9. Optimise your images
Magento is redirecting to previous url after transfered to new server
For this you need to follow these simple steps in database :
1. your host/phpmyadmin
2. select your database
3. find `core_config_data` table in that
4. change the secure and unsecure urls here, which is https://www.domain.com/
1. your host/phpmyadmin
2. select your database
3. find `core_config_data` table in that
4. change the secure and unsecure urls here, which is https://www.domain.com/
Subscribe to:
Posts (Atom)
Magento : 404 error is showing admin page
Hello, Sometimes we may get the error on admin page once done with the Magento installation. In that scenario, we have to do the following: ...
-
Hi , In this blog I’m going to explain you how to create accordion tabs in magento for layered navigation as displayed below for attribut...
-
To create a 404 page Create a CMS Page with Correct 'Store View'. Then go to System=>Config=>General=>Web in Default ...
-
Open your phpmyadmin from your host try once this sql command. Run this Sql : SET FOREIGN_KEY_CHECKS=0; UPDATE core_store SET store_i...