Monday 21 November 2016

How can import jafarkhanphp.blogspot.com data in wordpress

You can back up your blog content and import it to wordpress blog. You can also back up your.
  1. Firstly Login in to Blogger.
  2. Click Left hand Site “Setting Menu”
  3. Then Click Other Option
  4. See Import & back up Option and click “Backup Content”
  5. In the “Import & back up” section, click Back up ContentSave to your computer.
  6. And Again Login wordpress blog login
  7. Go to Tools-àimportàClick Blogger
  8. Then Browse Downloaded Blog xml File and import
  9. The you see all BlogSpot data imported in wordpress blog

Monday 17 October 2016

Magento connect manager redirects to homepage

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 folder

Refresh site and again connect magento connect manager.

If your problem solve please comment me.

thanks   

Monday 4 January 2016

Order confirmation and invoice emails are not being sent in magento 1.7



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.

Wednesday 14 October 2015

Unable to apply Rules in magento

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. Reset your auto-increment and you should be good.

you change data type int(10) to bigint(15)

Wednesday 19 November 2014

How to call Related product in static Block in Magento


How to call Related product in static Block in Magento


1. Login in admin panel 
2. CMC->> statick Blog
3. 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"}}

Tuesday 2 September 2014

Learn how to remove the Newsletter



Learn how to remove the Newsletter from Magento

In 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, from the Advanced menu in the bottom left corner of the screen click on the Advanced tab, set Mage_Newsletter to Disable, and press the Save Config button:

Monday 21 July 2014

How to Remove WordPress Logo and menu From Admin Bar

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');
}