Magento Admin menu werkt niet meer
Zojuist een upgrade gedaan van een magento installatie naar een nieuwe versie via Magento Connect Na de upgrade bleek de admin menu niet meer te werken in de backend. De oplossing bij mij was het...
View ArticleMagento Import Products
Go to Magento Admin > Catalog > Manage Categories Add your Product categories here but do note your category ids, you can make a list of your category ids in a notepad file. There might be a...
View ArticleBulk edit price in Magento with SQL query
Select Prices SELECT catalog_product_entity_decimal WHERE catalog_product_entity_decimal.attribute_id=75 Update Prices with Value UPDATE catalog_product_entity_decimal SET...
View ArticleMySQL query caching for ex. Magento
Login Plesk MySQL On server with Parallels Plesk Panel versions 8.x, 9.x and above admin password is stored in file /etc/psa/.psa.shadow. Use the following command to get the password: ~# cat...
View ArticleDisable paypal logo from sidebar in Magento
System > Configuration > Payment Methods > Paypal All in One Payments Solutions> Paypal Payments Advanced (Includes Express Checkout)> Basic Settings – Paypal Payments Advanced >...
View ArticleMagento orders by sku
SQL code for orders by skuSQL code for orders by sku SELECT sales_flat_order.increment_id, sales_flat_order_item.order_id, sales_flat_order_item.sku, sales_flat_order.status,...
View ArticleUpgrade Magento 1 Via SSH
Upgrading Magento via SSH is usually much simpler than via the magento downloader. To upgrade follow these simple steps. 1. First backup. Download a copy of your database, and backup your files. You...
View ArticleAvailable qyt on the cart page in Magento 1
For the available qyt on the cart page use below code; <!-- start available qty to product in app\design\frontend\ultimo\colorfabb\template\checkout\cart\item\default.phtml--> < ?php...
View ArticleMagento: Removing Billing Agreements, Recurring Profiles & My Applications links
Magento: Removing Billing Agreements, Recurring Profiles & My Applications links from customer account. Step 1: Go to ( yourPackage/YourTemplate/customer/account/navigation.phtml ) Step 2:...
View ArticleAdd Guest Order to a Customer Account in Magento
To get the customer_id simply go to Customers > Manage Customers in the Magento admin. Log in to the MySQL and execute the following queries: UPDATE sales_flat_order SET customer_id =...
View Article