Change Admin URL of the Existing Magento Store

Suppose you have an existing Magento website and the url of the administrator side is http://www.yoursite.com/admin. On the time of Magento Installation most of us just put the url of the admin side is http://www.yoursite.com/admin, which is not secure and hackers can find the admin area url very easily.

Display Products With Pagination on Home Page In Magento

Sometimes you want to display the products of the specific categories on the home page with the Magento pagination.

Find Exact Phrase Or Word In Quick Search In Magento

In Magento quick search, when we search for word or a phrase it returns all the product contaning that word or phrase. Some time it returns all the products containing the word or phrase in the description or in the short description for example if we search for the

Check current page is homepage or not In Magento

Sometimes we want to check that current page is homepage or not through the code in Magento. In this post I am trying to solve such kind of the problem, It is very simple and you can get this from the code below:

Excute Custom Query In Magento

Magento provides very good feature for the data manipulations with the Database tables. Magento array give all the data by default but when you are working with the custom Magento development then we need to get or insert some data into the database. In this post I just wants

Get all the customer details by email id In Magento

Suppose we have the customer email id and we want to display all the customer details in Magento, its very easy and you can find all the customer information by using the code below:

Display login form anywhere with wp_login_form In WordPress.

Suppose you want to display a login form to customize your wordpress themes, it is very simple and you can do it by adding wp_login_form() function to your custom theme. Just follow the steps given below and display the custom login form where you want.

Select,Insert,Update,and Delete data (CRUD) In Magento

In this blog post I am trying to describe the custom Magento query like the Select,Insert,Update,and Delete query in Magento