Iam a Wfm Scheduler in Conduent business services india LLP. As an scheduler, 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.
Add code
Wednesday, 25 November 2020
What is Exception in Magento ?
What is the reason to become Magento is most valuable for the ecommerce businesses?
- Magento is Open source technology. It is perfect for all types of small businesses.
- Magento is a fast e-commerce platform, affordable, it gives small companies more flexibility in customization of its potential.
- Magento saves those types of businesses time and money if they need only a simple and perfect solution.
- Magento platform makes easy and valuable online transactions and/or purchasing affordable on the websites.
Thursday, 22 October 2020
Why Magento 2 technology is better than Magento 1 ?
There are so many differences and usabilities that existed in Magento2. Here, The major difference between Magento1 and Magento2 is that Magento 2 is SEO friendly and faster, and it is more user friendly than the Magento1. Magento 2 supports the latest PHP version and that improves the overall speed of the website. It can take the more orders per the on time like per hour and the website's page also loads faster than Magento 1.
Thursday, 15 October 2020
Is Magento available for free ?
Magento, Magento is an Open Source and is a free edition of the platform. It is designed for the developers and for the small business store owners. This Magento version can download and can use completely free of cost. Anyways, launching the Magento Open Source website goes beyond downloading and to install the software.
Saturday, 10 October 2020
What is the passing score for Magento's (Certification) Certified Developer Exam?
Passing score for the Magento's (Certification) Certified Developer Exam
- Magento's Certified Developer exam is: 37 or higher
- Magento's Certified Developer Plus exam is: For sections 11 & 12 combined a score of 7 or higher AND meet the overall passing score of 48 or higher
- Magento's Certified Front End Developer exam is: 44 or higher
- Magento's Certified Solution Specialist exam is: 39 or higher
- Magento2's Certified Solutions Specialist exam is: 53 or higher
- Magento2's Certified Professional Developer exam is: 64% or higher
- Magento2's Certified Associate Developer exam is: 68% or higher
- Magento2's Certified Professional Front End Developer exam is: 63% or higher
- Magento2's Certified Professional JavaScript Developer exam is: 63% or higher
Why switch to Magento 2 ?
1. Modular the architecture and the coding structures:
By this, we can find that there is more capacity to grow with Magento 2 version.
2. Magento2 Advanced search functionality:
Magento2 uses the Elastic Search both within the website and on the admin side also. That means that users can quickly find what they are looking for.
3. Automated testing feature:
This Automated testing feature improves the code quality, which in itself speeds up the time to market for new website builds and changes.
4. Simplified the Magento2 upgrades:
This feature gives our merchants an easier path to the latest version of Magento without any costly and complex upgrades Magento2.
5. Improved performance of the website:
This will cover both client and server-side optimization and includes the addition of 3rd party caching on the Magento store.
6. Flexible architecture of Magento2:
Magento2 is built on a modern and advanced technology stack, making it very quick to build the new sites by embracing the latest web technology.
7. Modular design also one additional feature:
This Magento's partner can create, retrieve, update, and remove functionality without affecting the underlying system integrity of the existing.
8. Great frameworks among all:
The latest Magento's theme, layout, structure, and design options allow for a great user experience.
Thursday, 8 October 2020
How we will remove the decimal points from the price in Magento2 website?
Override the following file from the following path `vendor/magento/module-catalog/view/base/web/js/price-utils.js` then change the value of precision on line 38 as the following changes:
How to change the order status from COMPLETED TO CLOSED in Magento?
To Translate the words in Magento:
How can i Import all categories into Magento Site ?
How to Import all Categories into Magento website
To import all categories and products to your Magento website, we need to follow the following instructions.
- Create all categories and create one product on your Magento website
- Then export the data and keep that file with you.
- Now arrange the data which you want to import into the website, that total has to be arranged in the format which like your exported data.
- After arranging you can easily import the data into your Magento website.
Note: After import the data, you need to make reindex.
How to redirect my Magento website from HTTP to HTTPS ?
To redirect a Magento website from HTTP to HTTPS, I think which Magento version you are using is not an important one.
You just follow these following steps:
- Your host/PHPMyAdmin
- Select your database from the existing
- Find for the table `core_config_data` in that
- Now, change the secured and unsecured URLs here, like https://www.domain.com/
New order confirmation email is not being sent on Magento website
We have 2 methods to send the confirmation emails from our Magento 1 website.
- Using Cron
- Avoiding Cron
If you want to avoid the Cron :
Open the file order.php file from the following path:
app/code/core/Mage/Sales/Model/Order.php
Line#1356,1450
Change the following
//$mailer->setQueue($emailQueue)->send();
to the following:
$mailer-> send();
In the following path `app/design/frontend/base/default/template/checkout/success.phtml`:
add the following line Top success page for sending mail direct
$order = Mage::getModel('sales/order');
$incrementId = Mage::getSingleton('checkout/session')->getLastRealOrderId();
$order->loadByIncrementId($incrementId);
try{
$order->sendNewOrderEmail();
} catch (Exception $ex) {
echo "Email Not Sent...";
}
$customer = Mage::getSingleton('customer/session')->getCustomer();
$email = $customer->getEmail();
//End Email Sending
Friday, 2 October 2020
Magento 2: How to remove decimal points from the price
You need to override vendor/magento/module-catalog/view/base/web/js/price-utils.js and change the value of precision on line 38:
from
var precision = isNaN(format.requiredPrecision = Math.abs(format.requiredPrecision)) ? 2 : format.requiredPrecision,
to
var precision = 0
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: ...
-
I have tested this and worked for me on my server : INSERT INTO `directory_country_region` VALUES ( NULL , "IN" , ...
-
Warning: a form on this page has more than 1000 fields PHP MySql After reaching so many entries PhpMyAdmin started showing this warning:...
-
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...
-
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...
-
Step 1 : First, Optimize your Server and the System Requirements Step 2: Update your Magento 2 to the latest version of Magento 2 Step 3 ...
-
To prevent other shipping options to display when Free Shipping is available, add the following code to your template: Open : /app/des...
-
Find out the easiest way to setup Magento with SSL The private SSL certificate is an important upgrade to your website. The basic functi...
-
To create a 404 page Create a CMS Page with Correct 'Store View'. Then go to System=>Config=>General=>Web in Default ...
-
How to create and manage pages in Magento In order to manage your web site pages you need to navigate to the CMS section in the Magento ...
-
If you want both Add to Cart and Buy now, add the buy now button to addtoCart.phtml Go to /app/design/frontend/[package name]/[themen...