You can back up your blog content and import it to wordpress blog. You can also back up your. Firstly Login in to Blogger. Click Left hand Site “Setting Menu” Then Click Other Option See Import & back up Option and click “Backup Content” In the "Import & back up" section, click Back up ContentSave to your computer. And Again Login…
I have also facing the issue of when I click on Magento Connect Manager it redirects to the homepage of my site.Downloaded magento and reinstalled downloader to my store root directory - Deleted my var/cache and var/sessions- Deleted connect.cfg and cache.cfg from downloader folderRefresh site and again connect magento connect manager.If your problem solve please comment me.thanks
Go to System > Configuration > ADVANCED > System > Mail Sending Settings Disable Email Communications = No Host = I changed it from localhost to mail.mydomain.com Port (25) = 25 Set Return-Path = No Now, all email from Magento is normally sent.
Store has thousands of Products and Catalog Price Rules. The rules weren't being applied, and after debugging cron and other things that have been a problem in the past, I took a look at the catalogrule_product_price table to see what was there. I saw a single entry:Notice the value for rule_product_price_id -- Indeed, the max value for an INT(10) field.…
How to call Related product in static Block in Magento 1. Login in admin panel 2. CMC->> statick Blog3. Paste Code whose blog wheer you display related product {{block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"}}
Learn how to remove the Newsletter from MagentoIn this tutorial we will show you how to remove some of the default blocks from your site using only the Magento admin panel.With the help of the panel you can remove the Newsletter blocks from your Magento site.To remove the Newsletter in to your Magento admin panel, go to System > Configuration,…
Using the code below will remove the WordPress logo and wordpress Related sub menu from the Admin top Bar. The only thing you need to do is paste this code into the wp-content/thems/yourthems/function.php file of your theme.add_action('admin_bar_menu', 'remove_wp_logo', 999);function remove_wp_logo( $wp_admin_bar ) { $wp_admin_bar->remove_node('wp-logo');}
Find Outapp/design/adminhtml/default/default/template/sales/order/view/items.phtmlSuppose we want to add product images then we have to add with an extra table head with the current haead <th><?php echo $this->helper('sales')->__('Images') ?></th> // line No 39And Next Step Again find outapp/design/adminhtml/default/default/template/sales/order/view/items/renderer/default.phtml<td> <?php $obj = Mage::getModel('catalog/product'); $_product = $obj->load($_item->getProductId());?> <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(150); ?>" alt="images" /></td>
Add the Magento contact form to a CMS page as a static block Magento has a built-in contact form . You may for example want to add your company address, contact details or even a Google Map. This can quite easily be done by creating a CMS page and including the contact form portion of the standard Magento contact form…