Showing 4 Result(s)

Custom Magento admin URL

To protect your Magento backend against hackers and brute-force attacks, it’s often recommended that you change the default URL of the Magento Admin Panel. Follow these steps to change the admin URL/path: Step 1 – Change Path Open the local.xml configuration file. The file is usually located in the app/etc/ directory under your Magento installation. …

Magento – add CSS / JS per category or CMS page

Here’s a very simple solution to adding custom CSS or JS to a specific category or CMS page . The example below shows how to add a reference to a custom CSS file, let’s name it custom.css and assume that we’ve copied it in /skin/frontend/default/your_theme/css. The CSS file inside would look something like (just an example): .category-description { …

Magento – set product price per customer

To set a custom price for only for some of your Magento customers you have two ways of doing it. Both methods rely on creating a customer group. Go to Admin – Customer – Customer Groups then Add New Customer Group. Go to Customers – Manage Customers and manage the customers you want to add to the new group. Now decide if …

Set up Magento discount per customer

1. Add a new customer’s group through the Magento backend area: Customers ->Customer Groups -> Add New Customer Group. 2. Set the discount for the newly created group through the Magento backend area: Promotions -> Catalog Price Rules -> Add New Rule. Using the Customer Groups field you can select the customer groups for which …