Banner for M2wp
Combine Magento 2 with the CMS capabilities of WordPress. Seamless user experience for visitors by integrating the design of Magento and WordPress. Wordpress Tutorial
Noted That:
  • To install correctly this m2wp.zip .
  • Fisrt Download the m2wp.zip to your computer
  • Extract/Open m2wp.zip to Your Computer.
  • Then, Find readme.txt file inside m2wp.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " m2wp.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress M2wp

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install M2wp

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button M2wp

Step-5 : Now, Browse " m2wp.zip " Downloaded plugin from your computer, Where you downloaded " m2wp.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin M2wp

Step-6 : Now, Click on " Active Plugin "

Activate M2wp

Step-7 : Then, See left Side Menu. " M2wp " folder is added on left Side Menu. Now, Click on " M2wp " folder.

Noted that: If you do not see " M2wp " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about M2wp Configurations and Settings or How to work " M2wp " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Magento 2 WordPress Integration " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Magento 2 WordPress Integration
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

You can only use this plugin if your WordPress installation is on the same server as your Magento installation. This plugin requires several Magento store files to be included using PHP, this means it needs to be on the same server as your WordPress Installation. In addition, session data is stored per server and thus only available if both platforms are installed on the same server. Nevertheless, in most setups you can use different subdomains with this plugin.

  1. Purchase and download the WordPress plugin
  2. Upload the contents of the zip to your plugin directory
  3. Enable the plugin in your WordPress admin
  4. Apply the following patch to WordPress to avoid conflicts between WordPress and Magento 2:

File: WORDPRESS_ROOT/wp-includes/l10n.php

WordPress __() function is used for translation but is in conflict with Magento 2. Therefore, please find this function at around line 201 and

REPLACE


function __( $text, $domain = 'default' ) { return translate( $text, $domain );
}

WITH


function __( $text, $domain = 'default' ) { if ( defined( 'M2I_MAGE_DIR' ) && class_exists( 'M2I_External' ) && M2I_External::$needs_mage_translate ) { return M2I_External::translate( func_get_args() ); } else { return translate( $text, $domain ); }
}
  1. Complete the settings in the plugin settings page

Name